Si vous voulez qu'il y ait un nombre fixe de billets mis en avant sans avoir à modifier à chaque fois l'état des billets, ce code à placer dans le fichier functions.php
de votre thème va automatiser le processus en ne conservant l'état mis en avant que pour un nombre fixé de billets.
Remplacez le -1 du code par -N ou N est le nombre choisi.
Code
add_filter( 'pre_update_option_sticky_posts', 'gkp_pre_update_option_sticky_posts' );
function gkp_pre_update_option_sticky_posts( $posts ) {
return array_slice( $posts, -1 );
}
Spelling error report
The following text will be sent to our editors: