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



sticky_class › WordPress Function

Seit2.7.0
Veraltet3.5.0
sticky_class ( $post_id = null )
Parameter:
  • (int) $post_id An optional post ID.
    Erforderlich: Nein
    Standard: null
Siehe:
Definiert in:
Codex:

Display "sticky" CSS class, if a post is sticky.



Quellcode

function sticky_class( $post_id = null ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'post_class()' );
	if ( is_sticky( $post_id ) )
		echo ' sticky';
}