• Resolved maraki84

    (@maraki84)


    hi,

    this is an excellent plugin but the truth is that when i publish my movie post is not shown in my blog. I can see it under the category but not in the first page where all recent post are. Exo provlima stin roi koinos. Can anyone help me?

    • This topic was modified 4 years, 5 months ago by maraki84.
Viewing 1 replies (of 1 total)
  • Plugin Author Kostas Stathakos

    (@djleven)

    Add this to the functions.php file of your theme.

    add_filter('widget_posts_args', 'widget_posts_args_add_custom_type');
    function widget_posts_args_add_custom_type($params) {
        $params['post_type'] = array('post','movie', 'tvshow', 'person');
        return $params;
    }

    It should display them. But this also depends on the theme you use.

    I may add this as an option in a future version.

Viewing 1 replies (of 1 total)
  • The topic ‘Post now shown in my blog’ is closed to new replies.