如何在特色图片后显示一些html()

我有一个相关的邮政编码, 我想将其放置在单个帖子页面上的特色图片之后。我努力了,

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-段

    推荐阅读