I think, one solution can be to display RELATED POSTS at the bottom of your single posts. The related post can be from same category or same tags. For example, here i managed to display ‘You May Also like’ where similar categories posts (maximum 5) are linking up:
single post
Hi Frank,
Thanks for your quick reply. For your kind reference, when we enqueue default wp-media (right now using version 4.1) its added ‘plupload.full.min.js’ file in footer which locates at : wp-includes/js/plupload/ folder.
I tried with your ‘exclude’ comma-seperated exclusion from admin settings but no luck 🙁
Would you please just add below code in functions.php file to any site and try to check console through firebug from front-side:
function add_my_scripts() {
wp_enqueue_media();
}
add_action('wp_enqueue_scripts', 'add_my_scripts');
Yesterday, i opened a ticket in stackoverflow where you can see the error i am facing: CLICK HERE
Regards,
M