Switch language

wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren




stick_post [ WordPress Function ]

stick_post ( $post_id )
Parameter:
  • (int) $post_id Post ID.
Definiert in:



Make a post sticky.

Sticky posts should be displayed at the top of the front page.

Source


<?php
function stick_post($post_id) {
    
$stickies get_option('sticky_posts');

    if ( !
is_array($stickies) )
        
$stickies = array($post_id);

    if ( ! 
in_array($post_id$stickies) )
        
$stickies[] = $post_id;

    
update_option('sticky_posts'$stickies);
}
?>

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

Nutzerduskussionen [ wordpress.org ]

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics