返回介绍

get_post_thumbnail_id()

发布于 2017-09-10 23:57:05 字数 3874 浏览 1045 评论 0 收藏 0

get_post_thumbnail_id( int|WP_Post $post = null )

Retrieve post thumbnail ID.


description


参数

$post

(int|WP_Post) (Optional) Post ID or WP_Post object. Default is global $post.

Default value: null


返回值

(string|int) Post thumbnail ID or empty string.


源代码

File: wp-includes/post-thumbnail-template.php

function get_post_thumbnail_id( $post = null ) {
	$post = get_post( $post );
	if ( ! $post ) {
		return '';
	}
	return get_post_meta( $post->ID, '_thumbnail_id', true );
}

更新日志

Versiondescription
4.4.0$post can be a post ID or WP_Post object.
2.9.0Introduced.

相关函数

Uses

  • wp-includes/post.php: get_post_meta()
  • wp-includes/post.php: get_post()

Used By

  • wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::prepare_links()
  • wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::prepare_item_for_response()
  • wp-includes/post-thumbnail-template.php: get_the_post_thumbnail_caption()
  • wp-includes/embed.php: get_oembed_response_data_rich()
  • wp-includes/post-thumbnail-template.php: get_the_post_thumbnail_url()
  • wp-admin/includes/media.php: edit_form_image_editor()
  • wp-admin/includes/media.php: get_media_item()
  • wp-includes/post-thumbnail-template.php: has_post_thumbnail()
  • wp-includes/post-thumbnail-template.php: update_post_thumbnail_cache()
  • wp-includes/post-thumbnail-template.php: get_the_post_thumbnail()
  • wp-includes/post-template.php: prepend_attachment()
  • wp-includes/media.php: wp_prepare_attachment_for_js()
  • wp-includes/media.php: wp_playlist_shortcode()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::mw_getPost()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::mw_getRecentPosts()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::_prepare_post()
  • Show 11 more used by Hide more used by

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note Contributed by Codex

    Show all attachments for the current post except the Featured Image
    To get all post attachments except the Featured Image, you can use this function with something like get_posts().

    Do this inside The_Loop (where $post->IDis available).

    
    $args = array(
    	'post_type'   => 'attachment',
    	'numberposts' => -1,
    	'post_status' => 'any',
    	'post_parent' => $post->ID,
    	'exclude'     => get_post_thumbnail_id(),
    );
    
    $attachments = get_posts( $args );
    
    if ( $attachments ) {
    	foreach ( $attachments as $attachment ) {
    		echo apply_filters( 'the_title', $attachment->post_title );
    		the_attachment_link( $attachment->ID, false );
    	}
    }
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文