一为iotheme主题内容页增加网站预览图功能。
- 服务器知识
- 2024-06-07
- 34热度
- 0评论
之前有人问这个主题在内容页怎么增加预览图

请在内容代码添加如下代码:
<!--网站预览开始-->
<?php
$link = get_post_meta($post_id, '_sites_link', true);
?>
<img width="100%" data-src="//s0.wp.com/mshots/v1/<?php echo urlencode($link); ?>" alt="<?php the_title(); ?>">
<!--网站预览结束-->