Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Dragan Nikolic

    (@nikolicdragan)

    Thanks for your praise.

    There’s no option for that. Since you’re the first that wants this option, it’s highly unlikely will implement it in the future.

    2nd request for this option.

    me too ??

    Plugin Author Slobodan Manic

    (@slobodanmanic)

    Just updated the plugin to 1.3

    It adds filter hook that lets you change which post types are displayed in Latest Posts tab. You can use code like this to display pages instead of posts:

    add_filter( 'ts_fab_show_latest_posts_type_hook', 'your_site_change_fab_post_types' );
    function your_site_change_fab_post_types( $post_types ) {
        $post_types = array(
            'page',
        )
    
        return $post_types;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Latest Pages instead of Posts?’ is closed to new replies.