我有一个相关的邮政编码, 我想将其放置在单个帖子页面上的特色图片之后。我努力了,
add_action( 'loop_start', 'wcr_related_posts', 10, 0 ) ;
但是它不起作用, 因为我想显示内容。它确实在适当的位置显示了内容, 但是侧边栏没有移动, 只是内容在下面显示了一点, 由于wcr_related_posts生成的代码, 我也希望侧边栏在下面。我一直找不到能以我想要的方式工作的钩子。
#1你可以使用” the_content” 过滤器执行此操作:
add_filter( 'the_content', 'insert_featured_image', 20 );
function insert_featured_image( $content ) {$content = preg_replace( "/<
\/p>
/", "<
/p>
" . get_the_post_thumbnail($post->
ID, 'post-single'), $content, 1 );
return $content;
}
【如何在特色图片后显示一些html()】通过以下链接获取更多详细信息和示例:https://wordpress.stackexchange.com/questions/61272/how-do-i-add-the-featured-image-to-the-content-after-the-first-段
推荐阅读
- 如何在wordpress帖子中仅显示评论作者(未注册)的未批准评论()
- 如何在WordPress自定义帖子类型中按类别显示帖子
- 如何在divi博客模块中显示自定义字段()
- 如何显示wordpress主题中的继续阅读摘要()
- 如何在悬停CSS上显示博客特色图片()
- 如何在WordPress中以编程方式设置主题()
- Linux写时复制(CopyOnWrite)|写时拷贝|rcu
- 论文阅读丨神经清洁(神经网络中的后门攻击识别与缓解)
- shellLinux 连续执行多条命令的方法和区别