タクソノミータグ– tag –
-
タクソノミータグ
get_the_terms
記事に所属しているタクソノミーのタームを取得します。 Retrieve the terms of the taxonomy that are attached to the post. get_the_termsのファンクションタグ使用方法 [php][/php] get_the_termsのパラメーター $id (int) (required)記事ID。 デフォ... -
タクソノミータグ
get_taxonomies
登録されているタクソノミーオブジェクトのリストを取得します。 Get a list of registered taxonomy objects. get_taxonomiesのファンクションタグ使用方法 [php] [/php] get_taxonomiesのパラメーター $args (array) (optional)キーの配列->値の引数は、... -
タクソノミータグ
taxonomy_exists
この条件タグは、それへ引数としてタクソノミー名を渡すことでタクソノミー名が存在している場合にチェックします。これはboolean関数がタクソノミー名が存在する場合にチェックするために、グローバル$wp_taxonomies変数を使用して、タクソノミー名が存在... -
タクソノミータグ
term_exists
取得したタームが存在するかどうかを確認し、タームIDを返します。タームが存在しない場合は、タームオブジェクトあるいは0(false)を返します。 Check if a given term exists and return the term ID, a term object, or 0 (false) if the term doesn't e... -
タクソノミータグ
get_terms
タクソノミーのタームやタクソノミーのリストを取得します。 Retrieve the terms in taxonomy or list of taxonomies. get_termsのファンクションタグ使用方法 [php][/php] デフォルトの使用方法 [php] [/php] get_termsのパラメーター $taxonomies (strin... -
タクソノミータグ
get_term
タームIDによってデータベースから全てのタームデータを取得します。名前、スラッグ、IDでタームデータを取得するには、代わりにget_term_by() を使用してください。 get_term関数の使用方法は、タームオブジェクトにフィルターを適用することです。フィル... -
タクソノミータグ
get_term_by
タームフィールドとデータで、データベースからすべてのタームデータを取得します。 Get all Term data from database by Term field and data. 警告:$valueは 'name'のfieldにエスケープされていません。必要であれば、あなた自身が行う必要があります。...
12