WordPress の機能を実装するための基本的な要素です。get_posts() や wp_insert_post() など、多くの便利な関数が用意されており、テーマやプラグインの開発時に頻繁に使用されます。
- 【非推奨】wp_list_bookmarks()
- 【非推奨】wp_title()
- absint()
- activate_plugin()
- activate_plugins()
- add_action()
- add_blog_option()
- add_comment_meta()
- add_comments_page()
- add_feed()
- add_filter()
- add_image_size()
- add_link()
- add_links_page()
- add_option()
- add_options_page()
- add_shortcode()
- apply_filters()
- bloginfo()
- body_class()
- cancel_comment_reply_link()
- category_description()
- comment_author_email_link()
- comment_author_email()
- comment_author_IP()
- comment_author_link()
- comment_author_rss()
- comment_author_url_link()
- comment_author_url()
- comment_author()
- comment_class()
- comment_date()
- comment_excerpt()
- comment_form_title()
- comment_form()
- comment_id_fields()
- comment_ID()
- comment_reply_link()
- comment_text_rss()
- comment_text()
- comment_time()
- comment_type()
- comments_link()
- comments_number()
- comments_popup_link()
- comments_popup_script()
- comments_rss_link()
- comments_template()
- current_user_can()
- delete_get_calendar_cache()
- do_shortcode()
- edit_bookmark_link()
- edit_comment_link()
- edit_post_link()
- edit_tag_link()
- esc_html()
- esc_url()
- flush_rewrite_rules()
- get_admin_url()
- get_archives_link()
- get_attachment_link()
- get_author_posts_url()
- get_avatar()
- get_bloginfo()
- get_bookmark_field()
- get_bookmark()
- get_bookmarks()
- get_calendar()
- get_current_blog_id()
- get_delete_post_link()
- get_edit_post_link()
- get_footer()
- get_header()
- get_home_url()
- get_option()
- get_page_link()
- get_post_field()
- get_post_thumbnail_id()
- get_post()
- get_queried_object_id()
- get_search_form()
- get_search_link()
- get_search_query()
- get_sidebar()
- get_site_url()
- get_template_part()
- get_term_link()
- get_term_meta()
- get_terms()
- get_the_archive_title()
- get_the_author_link()
- get_the_author()
- get_the_category_by_ID()
- get_the_date()
- get_the_ID()
- get_the_post_thumbnail()
- get_the_term_list()
- get_the_terms()
- get_the_title()
- has_post_thumbnail()
- home_url()
- is_active_sidebar()
- is_category()
- is_multisite()
- is_page()
- is_plugin_active()
- is_post_type_archive()
- is_tag()
- is_user_logged_in()
- is_wp_error()
- next_comments_link()
- next_image_link()
- next_post_link()
- next_posts_link()
- paginate_comments_links()
- permalink_anchor()
- permalink_comments_rss()
- post_class()
- post_password_required()
- post_type_archive_title()
- posts_nav_link()
- previous_comments_link()
- previous_image_link()
- previous_posts_link()
- register_post_type()
- register_taxonomy()
- remove_action()
- shortcode_atts()
- single_cat_title()
- single_month_title()
- single_post_title()
- single_tag_title()
- single_term_title()
- site_url()
- sticky_class()
- tag_description()
- term_description()
- term_exists()
- the_attachment_link()
- the_author_link()
- the_author_meta()
- the_author_posts_link()
- the_author_posts()
- the_author()
- the_category()
- the_content_rss()
- the_content()
- the_date_xml()
- the_date()
- the_excerpt_rss()
- the_excerpt()
- the_feed_link()
- the_ID()
- the_meta()
- the_modified_author()
- the_modified_date()
- the_modified_time()
- the_permalink()
- the_post_thumbnail()
- the_shortlink()
- the_tags()
- the_taxonomies()
- the_time()
- the_title_attribute()
- the_title()
- update_term_meta()
- user_trailingslashit()
- wp_attachment_is_image()
- wp_die()
- wp_dropdown_categories()
- wp_dropdown_users()
- wp_enqueue_script()
- wp_generate_tag_cloud()
- wp_get_archives()
- wp_get_attachment_image_src()
- wp_get_attachment_image()
- wp_get_attachment_link()
- wp_get_attachment_link()
- wp_get_attachment_metadata()
- wp_get_document_title()
- wp_get_post_categories()
- wp_get_post_tags()
- wp_get_shortlink()
- wp_get_sidebars_widgets()
- wp_insert_term()
- wp_link_pages()
- wp_list_authors()
- wp_list_comments()
- wp_meta()
- wp_nav_menu()
- wp_register()
- wp_tag_cloud()
新着記事
-
add_filter()
add_filter()は、WordPressでフィルターフックに関数を登録するためのテンプレートタグです。テーマやプラグイン開発者はこの関数を使って、既存のデータをカスタマイズできます。 機能の説明 add_filter()は、指定したフィルターフックにユーザー定義関数... -
get_post()
get_post()は、指定された投稿または現在の投稿の詳細な情報を取得するテンプレートタグです。 機能の説明 get_post()は、特定の投稿、ページ、またはカスタム投稿タイプのオブジェクトを取得します。この関数は投稿IDを受け取り、その投稿に関連するデー... -
get_queried_object_id()
get_queried_object_id()は、現在のクエリで取得されたオブジェクトのIDを返すテンプレートタグです。 機能の説明 get_queried_object_id()は、WordPressが実行中のクエリから、対象オブジェクト(投稿、タクソノミー、ページなど)のIDを取得します。単一... -
the_content()
the_content()は、WordPressの投稿本文を表示するためのテンプレートタグです。 機能の説明 the_content()は、現在表示中の投稿またはページの「本文」を取得し、HTMLを適用して表示します。記事内の段落やショートコードが適切に解釈されて出力されるため... -
wp_get_post_tags()
wp_get_post_tags() は、指定した投稿のタグ情報を取得するためのテンプレートタグです。 機能の説明 wp_get_post_tags()は、特定の投稿に紐づけられたタグを取得し、それを配列として返します。タグ情報は、WP_Termオブジェクト形式で取得され、各タグの... -
do_shortcode()
do_shortcode()は、WordPress内でショートコードを評価・実行し、その結果を表示するためのテンプレートタグです。テーマファイルやプラグイン内で、直接ショートコードを処理する際に使われます。 機能の説明 do_shortcode()は、ショートコードを含む文字... -
update_term_meta()
update_term_meta()は、指定したタクソノミーのタームにメタデータを追加・更新するためのテンプレートタグです。タクソノミータームごとにカスタムデータを管理する際に使用します。 機能の説明 update_term_meta()は、ターム(カテゴリーやタグなど)に... -
get_post_field()
get_post_field は、WordPressの投稿やカスタム投稿タイプから特定のフィールド(例:タイトル、コンテンツ、スラッグなど)のデータを取得するためのテンプレートタグです。 機能の説明 get_post_field は、指定された投稿IDの特定フィールドの値を取得し... -
apply_filters()
apply_filters() は、WordPressのフィルターフックを適用し、フィルタリングされたデータを返すためのテンプレートタグです。プラグインやテーマの開発者は、特定のデータを変更するためにこの関数を使用します。 機能の説明 apply_filters() は、指定され... -
get_term_meta()
get_term_meta() は、WordPressのターム(カテゴリー、タグ、またはカスタムタクソノミー)のメタデータを取得するためのテンプレートタグです。タームに追加されたカスタムフィールドのデータを取得する際に使用されます。 機能の説明 get_term_meta() は...
当ページのリンクには広告が含まれています。