Great plugin! Thank you for your work!
I've a similar problem:
I've integrated related_entries() and related_posts() in the page template.
I made an extralong post which is an exact copy of an extralong page. They have the same categories and tags.
http://www.virtuallaw.at/recht/
http://www.virtuallaw.at/allgemein-markenanmeldung-80/
I've choosen „show post and page together“ in the YARPP config panel.
Result:
+ The post frontend shows the page as a related entry.
- The post backend "related posts box" doesn't show the page as a related entry (continues to show only related posts)
- The page frontend only shows "no results" (which I configured in the YARPP config panel to make sure that the related_entries() code does anything at all).
- The page backend doesn't show the related post box at all.
So it works only in the posts front end.
I hope this is understandable.
Thank you for any help!
Greetings Peter
(I updated to the newest version on wordpress.org before posting to make sure it's not an old version prob)
Using
add_action('init', 'ecs_theme_init');
function ecs_theme_init() {
register_taxonomy_for_object_type('post_tag', 'page');
register_taxonomy_for_object_type('categories', 'page');
}