一般的标签代码 我们先看下,调用当前页面(或帖子)的特色图片(Featured Image)一般的标签代码: <?php // 获取当前页面(或帖子)的特色图片ID $post_thumbnail_id = get_post_thumbnail_id(); // 检查是否有特色图片 if ($post_thumbnail_id) {// 获取特色图片的URL$thumbnail_url = wp_get_attachment_imag...
如果您想在背景图片样式中使用特色图片的 URL,或制作一个特别需要特色图片 URL 的独特主题元素,这将非常有用。 <?php //Display the featured post URL (you can replace 'medium' with a different image size) echoget_the_post_thumbnail_url(get_the_ID(),'medium'); 上述代码段还可以自定义不同的图片...
下面是获取图片的代码: // Get the image $post_image = (string)$item->{"image-url"}; 下面是将图片设置为特色图片的代码: // Update Featured image if($post_image!= "") imwb_zonpress_theme_products_set_featured_image($postId, $post_image); 当url的图片扩展名是这样的时候,它可以很好地...
这些属性都是与文章相关的,同时根据 post_type的不同,该表还能用来存储特色图像 Featured Image。 由此可以看到,Wordpress 利用 post_type 可以在该表中存储草稿、文章、页面、附件等丰富的信息,一张表就搞定了。 wp_postmeta 表 与这张表相关联的,还有一个 wp_postmeta 表,用来存储与文章相关的元数据。这个表的...
First, you need to edit the post or page where you want to add the custom field and go to the custom fields meta box. 首先,您需要编辑要在其中添加自定义字段的帖子或页面,然后转到“自定义字段”元框。 Next, you need to provide a name for your custom field and then enter its value. Cli...
function get_post_meta( $post_id, $key = '', $single = false ) { return get_metadata('post', $post_id, $key, $single); } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 继续找 get_metadata 在 wp-includes/meta.php 中。
Featured Image by URL是一款可用外链图片链接替代 WordPress 本地特色图片插件。 支持文章、页面和自定义文章类型的特色图片。 安装方法1: WordPress后台搜索插件:Featured Image by URL,然后安装启用,按需设置。 安装方法2: WordPress官网下载:https://cn.wordpress.org/plugins/featured-image-by-url/,然后用FTP上传...
the_post_thumbnail_url():这个函数直接显示文章缩略图链接,这个函数和上面函数类似,一个是返回,一个是直接输出,不具体详细讲解了。 get_the_post_thumbnail():获取文章缩略图而不是输出它 有时候,我们可能在 PHP 代码中返回文章缩略图,而不是输出它,可以使用下面简单的代码: ...
Status status string The status of the post Tags tags string The tags for post Returns Body PostModel Get post Operation ID: GetPost Get post Parameters 展開資料表 NameKeyRequiredTypeDescription Site Id siteId True string The site's id or domain Post Id postId True string The post...
首先,看一看你的主题包,在functions.php文件里必须有下面的语句才能开启单篇日志以及页面里的Featured Image功能。add_theme_support( 'post-thumbnails' );当然,如果你只希望在单篇日志里开启这样的功能,只要加入 add_theme_support( 'post-thumbnails', array( 'post' ) );页面功能同理:add_...