Viewing 1 replies (of 1 total)
  • Hi Pierre,

    thanks for reaching out and really sorry for the late reply.

    Are you using a sticky posts plugin or are you talking about the WP feature? If the later, I think that the following should work:

    Go to init.php file of the plugin, find the “if ($content != “” && $post->post_type === ‘post'” part and just add the || ‘sticky_posts’ after ‘post’ like so:
    if ($content != “” && $post->post_type === ‘post’ || ‘sticky_posts’ && (($options[“on_single_post”] && is_single()) || (is_feed() && $options[“on_rss”])))

    Keep in mind that I have not tested this on my side, so please make sure you have your database backed up before making any such changes but I think it should work or at least point you in the right way.

    Let me know how it goes,
    Petra

Viewing 1 replies (of 1 total)
  • The topic ‘related posts not appearing on sticky posts’ is closed to new replies.