テンプレートタグ– tag –
-
添付ファイルタグ
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_attachment_link
添付ファイルのページのURIを返します。 Returns the URI of the page for an attachment. 戻り値 "pretty"のパーマリンクの構造の下では、http://wp.example.net/path_to_post/post_name/attachment_nameのように関数を返します。 Under a "pretty" perma... -
添付ファイルタグ
the_attachment_link
添付ファイルへのハイパーリンクを出力します。また添付ファイルが見つける事が出来なかった場合、添付ファイルに失敗します。 Outputs a hyperlink to the attachment file, or Missing Attachment if the attachment can't be found. ハイパーリンクが含... -
投稿タグ
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... -
投稿サムネイルタグ
has_post_thumbnail
投稿に添付された画像が(true)かない(false)場合、booleanの値を返します。 注:ポストのサムネイルが有効にするには、現在のテーマのはfunctions.php ファイルにadd_theme_support( 'post-thumbnails' );を含めなければなりません。 Returns a boolean if... -
投稿サムネイルタグ
the_post_thumbnail
記事の編集画面で設定する投稿サムネイルを表示します。サムネイル画像は"attachment-thumbnail"クラスを与えられます。 投稿サムネイルを有効にするには、現在のテーマのfunctions.phpファイルにadd_theme_support( 'post-thumbnails' );を含まなければな... -
コメントタグ
comment_class
WordPressは、単独のスタイルを提供するテーマ著作者を手助けするために、コメントのクラスのために新しい関数をインクルードします。関数は、適切で十分な、comment_class()を呼び出します。 より詳細はpost_class()を参照してください。 WordPress inc...