is_sticky

Sponsored Link

この条件タグは”フロントページへこの投稿を固定する”チェックボックス現在の投稿にチェックされている場合にチェックします。これはTRUEまたはFALSEのいずれかを返すという意味のプール関数です。

Sponsored Link

This Conditional Tag checks if “Stick this post to the front page” check box has been checked for the current post. This is a boolean function, meaning it returns either TRUE or FALSE.

is_stickyのファンクションタグ使用方法

<?php is_sticky($post_ID); ?>

is_stickyのパラメーター

$post_ID

(string) (optional) 投稿IDです。
デフォルト:なし

(string) (optional) The post ID
Default: None

戻り値

(boolean) 成功の時True、失敗した場合にFALSE

(boolean)
True on success, false on failure.

is_sticky();

任意の固定投稿ページが表示されているとき。

is_sticky(’17’);

固定投稿17(ID)が表示されているとき。

is_sticky();
// When any Sticky Post page is being displayed.

is_sticky(’17’);
// When Sticky Post 17 (ID) is being displayed.

変更ログ

Since: 2.7.0

ソースファイル

is_sticky()は、wp-includes/post.php内に位置しています。

is_sticky() is located in wp-includes/post.php.

関連ファンクションタグ

Conditional Tags: comments_open(), is_404(), is_admin(), is_archive(), is_attachment(), is_author(), is_category(), is_comments_popup(), is_date(), is_day(), is_feed(), is_front_page(), is_home(), is_local_attachment(), is_multi_author, is_month(), is_new_day(), is_page(), is_page_template(), is_paged(), is plugin active(), is_plugin_page(), is_post_type_archive(), is_preview(), is_search(), is_single(), is_singular(), is_sticky(), is_tag(), is_tax(), is_taxonomy_hierarchical(), is_time(), is_trackback(), is_year(), in_category(), in_the_loop(), is_active_sidebar(), is_active_widget(), is_blog_installed(), is_rtl(), is_dynamic_sidebar(), is_user_logged_in(), has_excerpt(), has_post_thumbnail(), has_tag(), pings_open(), email exists(), post_type_exists(), taxonomy_exists(), term_exists(), username exists()

Sponsored Link