在主页上循环中使用的模板部分中,类似这样的内容应该可以帮助您开始。之后的某个地方the_content();
或the_excerpt()
, 取决于您使用的内容。
<?php
if ( is_home() ) { ?>
<a class="button" href="<?php echo esc_url( get_permalink() );?>#comments">
Comment Link Text
</a>
}
?>
你可以让它看起来像一个带有CSS的按钮,从80000个CSS按钮生成器中的任何一个在线生成。
需要注意两件事:
有条件的is_home()
取决于您的博客设置。你可能需要is_front_page()
. 检查法典或"Tip: is_home() vs is_front_page()". 如果主题开发人员已经有了content-home.php
设置追加的#comments
需要更改片段标识符以匹配您的单个。php注释容器的ID。