Two methods:
Edit the template file:
查找呈现帖子的模板文件(很可能是
index.php
) 并找到post循环开始的位置。
类似于:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
在此代码之前添加的任何内容都将显示在您的博客帖子之前。
Insert via hook:
add_action( \'loop_start\', \'wpse107113_loop_start\' );
function wpse107113_loop_start( $query ){
if( $query->is_main_query() ){
echo "<p>Hello World!</p>";
}
}