投稿、ページ、添付ファイル、ブックマーク関連のファンクションタグ– category –
投稿、ページ、添付ファイル、ブックマーク関連に属するファンクションタグ一覧です。
-
投稿タグ
get_children
get_children()は、親記事によって可能な、添付ファイル、リビジョン、またはサブページを取得します。get_posts()と同様な動作をします。 get_children() retrieves attachments, revisions, or sub-Pages, possibly by post parent. It works similarly ... -
投稿タグ
is_sticky
この条件タグは"フロントページへこの投稿を固定する"チェックボックス現在の投稿にチェックされている場合にチェックします。これはTRUEまたはFALSEのいずれかを返すという意味のプール関数です。 This Conditional Tag checks if "Stick this post to th... -
投稿タグ
get_adjacent_post
隣接する投稿を取得します。 次または前のポストのどちらでもかまいません。 Retrieve adjacent post. Can either be next or previous post. get_adjacent_postのファンクションタグ使用方法 [php][/php] get_adjacent_postのパラメーター $in_same_cat (... -
投稿タグ
get_posts
複数のループを作成するためのシンプルな関数です。最新記事や条件に一致する投稿のリストを取得します。 パラメータはget_pagesに似ていますが、いくつかの異なる名前を持っているか、わずかに異なる値を取得することに注意してください。 This is a simp... -
添付ファイルタグ
wp_get_attachment_metadata
添付ファイルIDに対して添付ファイルのメタフィールドを取得します。 Retrieve attachment meta field for attachment ID. wp_get_attachment_metadataのテンプレートタグ使用方法 [php][/php] wp_get_attachment_metadataのパラメーター $post_id (intege... -
添付ファイルタグ
wp_get_attachment_image
添付ファイルを表すHTMLの画像要素、それ以外の場合は空の文字列のいずれかを返します。 Returns an HTML image element representing an attachment file, if there is any, otherwise an empty string. 概要 [php] (string) $img = wp_get_attachment_im... -
添付ファイルタグ
wp_get_attachment_image_src
もし添付ファイルがある場合は添付ファイルを表示する画像を返します。他はfalseを返します。 Returns an Image representing an attachment file, if there is any. Else returns false. 概要 [php](array) $image = function wp_get_attachment_image_sr... -
添付ファイルタグ
wp_attachment_is_image
wp_attachment_is_imageの関数は記事が画像である場合に決定します。 This function determines if a post is an image wp_attachment_is_imageのテンプレートタグ使用方法 [php] [/php] 例 記事ID37が画像である場合ににチェックします。 To check if pos... -
投稿タグ
get_the_post_thumbnail
投稿またはページの編集画面内の設定したように投稿サムネイルを取得します。サムネイル画像は"attachment-thumbnail"クラスを与えられます。 Gets Post Thumbnail as set in post's or page's edit screen. Thumbnail images are given class "attachment... -
ページタグ
is_page
この条件タグは、ページが表示されている場合にチェックします。これは、プール関数で、TRUE か FALSEのいずれかを返すという意味です。このタグは、ループ前に使用する必要があり、ループ内では動作しません(以下の注を参照)。 This Conditional Tag ch...