I'm using portfolios exclusively from now on. Is there a way to get the Related Posts feature to pick up related portfolios?
Thanks for the help.
I'm using portfolios exclusively from now on. Is there a way to get the Related Posts feature to pick up related portfolios?
Thanks for the help.
Hey,
open up includes/related-posts.php and replace:
$my_query = new WP_Query("tag=$tag_ids&showposts=$postcount&ignore_sticky_posts=1&orderby=rand");
with:
if( get_post_type() != 'portfolio' ){
$my_query = new WP_Query("tag=$tag_ids&showposts=$postcount&ignore_sticky_posts=1&orderby=rand");
}else{
$my_query = new WP_Query("tag=$tag_ids&post_type=portfolio&showposts=$postcount&ignore_sticky_posts=1&orderby=rand");
}Thank you. It seems to have worked!
Glad that I could help you :)
You must log in to post.