Plugin Directory

Changeset 940148


Ignore:
Timestamp:
06/28/2014 08:32:35 PM (12 years ago)
Author:
slobodanmanic
Message:

1.3 adds ts_fab_show_latest_posts_type_hook to filter post types in Latest Posts tab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fancier-author-box/trunk/includes/ts-fab-construct-tabs.php

    r887888 r940148  
    180180    }
    181181   
     182    // Hook for custom post types selection
     183    $post_types = apply_filters( 'ts_fab_show_latest_posts_type_hook', array( 'post' ) );
     184
    182185    $latest_by_author = new WP_Query( array(
    183186        'posts_per_page' => $ts_fab_settings['latest_posts_count'],
    184         'author' => $author->ID
     187        'author'         => $author->ID,
     188        'post_type'      => $post_types,
    185189    ) );
    186190
Note: See TracChangeset for help on using the changeset viewer.