Add the possibility of "sticky" CPT. (Gutenberg compatibility)
Évaluations
5
Mis à jour récemment
March 19, 2020
Version
2.0.0
Installations actives
60
Sticky CPT

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; }
Gratuitsur le plan Creator
En procédant à l’installation, vous acceptez les Conditions d’utilisation de WordPress.com ainsi que les Conditions de l’extension tierce.
Installations actives
60
Testé jusqu’à version
5.3.18
Cette extension est disponible en téléchargement pour être utilisée sur votre installation WordPress auto-hébergée.