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():...
代码语言:javascript 复制 $image_id=get_post_thumbnail_id(); get_the_post_thumbnail_url():获取文章缩略图链接 获取到文章缩略图链接 ID 之后,我们可以使用wp_get_attachment_image_url函数获取图的链接,但是 WordPress 已经提供了现成的函数一步到位: 代码语言:javascript 复制 $thumbnail_url=get_the_post_t...
$thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true ); //获取特色图像对应的ID echo _wp_post_thumbnail_html( $thumbnail_id, $post->ID ); //输出HTML } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 继续找 get_post_meta ,在wp-includes/post.php中。 /** * Retriev...
*/$check=apply_filters("get_{$meta_type}_metadata",null,$object_id,$meta_key,$single);if(null!==$check) {if($single&&is_array($check) )return$check[0];elsereturn$check; }$meta_cache=wp_cache_get($object_id,$meta_type.'_meta');if( !$meta_cache) {$meta_cache=update_meta_ca...
元数据记录的ID。 post_id 就是元数据相关联的post,用户(user),评论(comment)的ID。 meta_key 元键(meta key)(这个值在不同的记录中经常是重复的)。 meta_value 元值(meta value)(往往是唯一的)。 如何获取特色图像 Featured Image 那么,对于一个文章,是如何来获取特色图像 Featured Image的,下面来看一下...
首先,看一看你的主题包,在functions.php文件里必须有下面的语句才能开启单篇日志以及页面里的Featured Image功能。add_theme_support( 'post-thumbnails' );当然,如果你只希望在单篇日志里开启这样的功能,只要加入 add_theme_support( 'post-thumbnails', array( 'post' ) );页面功能同理:add_...
wordpress 自定义post type featured image wordpress 自定义字段,CustomfieldsareahandyWordPressfeaturethatallowsyoutoaddvariousadditionaldata/informationtoyourWordPresspostsandpages.自定义字段是一种便捷的WordPress功能,可让您向WordPress帖子和页面添加各种其
首先来看看 wp_posts 表。该表用来存放文章信息,如文章标题、正文、摘要、作者、发布时间、访问密码、评论数、修改时间、文章地址(非静态化之前的,带?和数字ID)等。这些属性都是与文章相关的,同时根据 post_type的不同,该表还能用来存储特色图像 Featured Image。
您可以使用get_user_by()函数通过使用他们的电子邮件、登录用户名或slug来检索任何用户的ID。 同样,您可以使用WP_User::remove_cap()类函数从特定用户中删除权限。 // get the user object by their ID $user = new WP_User( $user_id ); // add the capability to the specific user ...
Sharing Enabled sharing_enabled boolean Like Count like_count integer I Like i_like boolean Is Rebloggled is_reblogged boolean Is Following is_following boolean Global ID global_ID string Featured Image featured_image string Format format string Geo geo boolean 本文...