This plugin is outdated and might not be supported anymore
Sticky CPT

Sticky CPT

Details
View on WordPress

The plugin allows to highlight the CPT in the same way as would the WordPress core functionality for posts.
You can highlight new content created for your CPT.
It is also possible to highlight the content quickly thanks to bulk actions.

Start example

$args = array(
    'post_type'      => ['project'],
    'post_status'    => 'publish',
    'posts_per_page' => -1,
    'post__in'       => get_option( 'sticky_posts' )
);
$stickyProject = new WP_Query( $args );

Hook available

add_filter( 'sticky_cpt_add_cpt' , 'add_cpt' );

function add_cpt( $post_types ) {
    $post_types['newcpt'] = 'newcpt';
    return $post_types;
}

Details

Plugin code:
sticky-cpt
Plugin version:
2.0.0
Outdated:
Yes
WP version:
3.5 or higher
PHP version:
or higher
Test up to WP version:
5.3.18
Total installations:
50
Last updated:
2020-03-19
Rating:
Times rated:
2
cpt
forward
highlighting
push
sticky