Add the possibility of "sticky" CPT. (Gutenberg compatibility)
As of April 2026, Sticky CPT is a WordPress cpt plugin with 50 active installations and a 5/5 rating from 2 reviews. It has been downloaded 3.9K+ times in total. Requires WordPress 3.5+ and PHP false+. Available on WordPress.org since 2016. Last updated 6 years ago — may have compatibility concerns. Top alternative: MAS Static Content.
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;
}
| WordPress | 3.5+ requiredTested up to 5.3.21 |
| PHP | false+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.