Hello,
In angular fort each article/post you have " in .../ by...
Adresse of "by..." is for my site... "http://www.agir-efficace.com/author/agisjuste
How can i change that ?
Thank you
Damien
Hello,
In angular fort each article/post you have " in .../ by...
Adresse of "by..." is for my site... "http://www.agir-efficace.com/author/agisjuste
How can i change that ?
Thank you
Damien
Hi Damien,
You can find this in 4 different files which is found in this folder wp-content/themes/angular/includes:
-format-gallery.php
-format-link.php
-format-quote.php
-format-standard.php
Find this code block:
<span class='post-meta-infos'>
<?php
if(comments_open() || get_comments_number())
{
echo "<span class='comment-container minor-meta'>";
comments_popup_link(" <span>0 ".__('Comments','avia_framework')."</span>",
" <span>1 ".__('Comment' ,'avia_framework')."</span>",
" <span>% ".__('Comments','avia_framework')."</span>",'comments-link',
__('Comments Off' ,'avia_framework'));
echo "</span><span class='text-sep'>/</span>";
}
?>
<?php
$cats = get_the_category();
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in ','avia_framework');
the_category(', ');
echo ' </span><span class="text-sep">/</span> ';
}
$portfolio_cats = get_the_term_list( get_the_ID(), 'portfolio_entries', '', ', ','');
if($portfolio_cats && !is_object($portfolio_cats))
{
echo '<span class="blog-categories minor-meta">'.__('in ','avia_framework');
echo $portfolio_cats;
echo ' </span><span class="text-sep">/</span> ';
}
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span>';
?>
</span>
Hope this helps. :)
Regards,
Ismael
Thank's Ismael,
But rather than modify these files, there did he not a parameter somewhere to change that ... by name ... points to the address I want.
For example, rather than http://www.agir-efficace.com/author/agisjuste -->http://www.agir-efficace.com/coach
Or not, do you have to change these for files ? How ?
Damien
Hi Damien,
You'll need to change those items in the files specifically.
For the page URLs, you may be able to get what you are trying by altering your permalinks but I'm not quite clear what exactly you are trying to get from your description.
See permalinks here: http://codex.wordpress.org/Using_Permalinks#Category_base_and_Tag_base
Regards,
Devin
Thank You Devin,
For instance you can clic this : http://www.agir-efficace.com/assertivite.html and then you'll see under the title "assertivité" :
dans Coaching professionnel / par damien coach
I should like to change the URL of par damien coach
I don't want to change the permalinks because I don't want to break something else.
If there is no other way but to change the four files (format-gallery.php..., ) that's ok.
I'll leave it like that.
Damien
Hi Damien,
I think there's no other way but to change those files.
Regards,
Ismael
You must log in to post.