Hi @chaplin89
Thanks for using PublishPress Authors.
I’m pretty sure that won’t work with our plugin. Details on the update code is here: https://publishpress.com/knowledge-base/modify-theme-output-authors/
The basic code is now <?php do_action( ‘pp_multiple_authors_show_author_box’ ); ?>
Thanks for your answer.
I use :
do_action('pp_multiple_authors_show_author_box', false, 'inline');
in my post, for example :
https://fr.campagnerosa.be/articles/15713-pologne-nouvelle-mobilisation-pour-le-droit-a-lavortement
And you can see :
Écrit par Laura P. (ROSA Bruxelles), Brune (ROSA Bruxelles) .
I would like to :
– replace the comma with the word “and”
– delete the space before the “.”
(as did the old function 🙂
coauthors_posts_links(', ',' et ', null, null, false)
Hi @chaplin89
We added a compatibility layer for avoiding fatal errors, but you can use the following function instead:
multiple_authors_posts_links(', ', ' and ', null, null, false);
Sorry, this is not on the documentation because it is a legacy function, but we are going to update the documentation.
Thanks
Works perfect,
thanks a lot.