ファンクションタグ– category –
WordPressのファンクションタグの一覧です。
-
テーマに関するその他のタグ
current_theme_supports
テーマ機能のために与えられたテーマのサポートをチェックします。 Checks a theme's support for a given feature current_theme_supportsのファンクションタグ使用方法 [php][/php] current_theme_supportsのパラメーター $feature (string) (required) ... -
テーマに関するその他のタグ
add_custom_image_header
ヘッダー画像を表示するためにコールバックを追加します。 $header_callbackコールバックのパラメーターは、'wp_head'アクションの内容を表示するために必要となります。$admin_header_callbackコールバックのパラメーターは、Custom_Image_Headerを追加し... -
テーマに関するその他のタグ
add_custom_background
背景画像を表示するためにコールバックを追加します。 $header_callbackのコールバックのパラメーターは、'wp_head'アクションの内容を表示するために必要となります。$admin_header_callbackコールバックのパラメーターは、Custom_Backgroundのクラスを追... -
投稿タグ
get_posts
複数のループを作成するためのシンプルな関数です。最新記事や条件に一致する投稿のリストを取得します。 パラメータはget_pagesに似ていますが、いくつかの異なる名前を持っているか、わずかに異なる値を取得することに注意してください。 This is a simp... -
テーマに関するその他のタグ
wp_nav_menu
ナビゲーションメニューを表示します。メニューはバックエンド:外観>メニューから作成する事ができます。 Display a navigation menu. Menus can be created from the backend: Appearance > Menus. Given a theme_location parameter, the function disp... -
添付ファイルタグ
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...