post_id 就是元数据相关联的post,用户(user),评论(comment)的ID。 meta_key 元键(meta key)(这个值在不同的记录中经常是重复的)。 meta_value 元值(meta value)(往往是唯一的)。 如何获取特色图像 Featured Image 那么,对于一个文章,是如何来获取特色图像 Featured Image的,下面来看一下。在后台的文章编辑...
这些属性都是与文章相关的,同时根据 post_type的不同,该表还能用来存储特色图像 Featured Image。 由此可以看到,Wordpress 利用 post_type 可以在该表中存储草稿、文章、页面、附件等丰富的信息,一张表就搞定了。 wp_postmeta 表 与这张表相关联的,还有一个 wp_postmeta 表,用来存储与文章相关的元数据。这个表的...
这些属性都是与文章相关的,同时根据 post_type的不同,该表还能用来存储特色图像 Featured Image。 由此可以看到,Wordpress 利用 post_type 可以在该表中存储草稿、文章、页面、附件等丰富的信息,一张表就搞定了。 wp_postmeta 表 与这张表相关联的,还有一个 wp_postmeta 表,用来存储与文章相关的元数据。这个表的...
Theget_post_thumbnail_id()function in WordPress is used to retrieve the post thumbnail (featured image) ID for a given post. This function takes a post ID as a parameter and returns the ID of the featured image associated with that post. Here's how you can useget_post_thumbnail_id():...
$cb_banner_back = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $cb_image_size); <img src="<?php echo $cb_image_size; ?>"> 它工作完美,但现在我编写wordPress查询调用所有帖子,现在它显示我最近发布的帖子特色图像,它不显示我页面特色图像。我首先使用the_post_thumbnail(& ...
wordpress 自定义post type featured image wordpress 自定义字段,CustomfieldsareahandyWordPressfeaturethatallowsyoutoaddvariousadditionaldata/informationtoyourWordPresspostsandpages.自定义字段是一种便捷的WordPress功能,可让您向WordPress帖子和页面添加各种其
那么,对于一个文章,是如何来获取特色图像 Featured Image的,下面来看一下。在后台的文章编辑界面,特色图像显示在这个位置。 对应的后台代码是 wp-admin/includes/meta-boxes.php /** * Display post thumbnail meta box. * *@since2.9.0 * *@paramWP_Post $post A post object. ...
get_post_thumbnail_id():获取文章缩略图 ID 有时候我们想获取缩略图的 ID,文章缩略图的 ID 是存在 meta_key 为_thumbnail_id的值中,但是我们只需要使用下面简单的函数就可以获取文章的缩略图 ID: $image_id = get_post_thumbnail_id(); get_the_post_thumbnail_url():获取文章缩略图链接 ...
get_post_thumbnail_id():获取文章缩略图 ID 有时候我们想获取缩略图的 ID,文章缩略图的 ID 是存在 meta_key 为_thumbnail_id的值中,但是我们只需要使用下面简单的函数就可以获取文章的缩略图 ID: $image_id=get_post_thumbnail_id(); get_the_post_thumbnail_url():获取文章缩略图链接 ...
首先,看一看你的主题包,在functions.php文件里必须有下面的语句才能开启单篇日志以及页面里的Featured Image功能。add_theme_support( 'post-thumbnails' );当然,如果你只希望在单篇日志里开启这样的功能,只要加入 add_theme_support( 'post-thumbnails', array( 'post' ) );页面功能同理:add_...