primeweb
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] Mailchimp & BulletProof – 403 Forbidden errorThank you! worked perfectly!
Forum: Plugins
In reply to: [Co-Authors] its not possible to create several authors in WordPress 3.2.Hello! did you find the solution? If so, could you please share it here?
Thanks.Forum: Plugins
In reply to: [Co-Authors] Co-authors not saving author infoHello there,
did you guys figure out why the list of co-authors is not working in the backend anymore?Forum: Plugins
In reply to: [Co-Authors Plus] Co-Authors Plus The Vistas themeYes, thanks for your attention, but that link did not completely helped me, since I am not a skilled programmer. It might be easy for you to see, with your experience, but for me it didn’t tell me a lot… is it possible to include the co-author tag in that args array I have? Does it requires lots of changes?
Really sorry for bothering with this.Forum: Plugins
In reply to: [Co-Authors Plus] Co-Authors Plus The Vistas themeHi Daniel, thanks for your replay.
I am sorry, could you be a little bit more specific? Like, using an example.. Not a wordpress programmer, sorry about it.Forum: Plugins
In reply to: [Co-Authors Plus] Co-Authors Plus The Vistas themeHaving this sample code below, how could I add the co-author information to the args array, in order to also show the posts where an user is also a co-author?
Any help would be appreciated. Thanks.
<?php global $author;
if(isset($_GET[‘author_name’])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?><?php
$blogurl = get_bloginfo(‘template_url’);
$authid = get_the_author_meta(‘ID’);?>
<?php
$args = array( ‘paged’ => $paged,’post_type’ => ‘gtre’, ‘posts_per_page’ => $posts_per_page, ‘author’ => $curauth->ID);
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post);
?>