• Resolved afjsystem

    (@afjsystem)


    Hi..

    i’m wondering how to include latest post of custom post type in Slider ?
    I set the slider as latest blogpost but i can’t see the post of my custom post type in slider.

    can anyone help ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    Add this to your child theme’s functions.php.
    Change CUSTOM_POST_TYPE to whatever your post type is.

    add_filter('tc_query_posts_slider_sql','checksql') ;
    
    // Change CUSTOM_POST_TYPE to whatever your post type is
    
    function checksql($content) {
    return str_replace("posts.post_type='post'","(posts.post_type='post' OR posts.post_type='CUSTOM_POST_TYPE')",$content);
    }
    Thread Starter afjsystem

    (@afjsystem)

    thanks Menaka..

    works perfect. I have 2 custom post type and added the OR condition.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Include custom post type in Slider latest post’ is closed to new replies.