您可以使用the_content
如果需要修改内容,请进行筛选:
add_filter( \'the_content\', \'cyb_content_filter_callback\' );
function cyb_content_filter_callback( $content ) {
// Only for singular post views and for posts of main loop
if( is_singular( \'post\' ) && in_the_loop() ) {
// modify $content here
}
return $content;
}
如果您需要在显示帖子之前运行的操作,可能
loop_start
是您正在寻找的内容(不确定您需要做什么,但此操作是在循环开始时设置post数据之前激发的):
add_action( \'loop_start\', \'cyb_loop_start_action_callback\' );
function cyb_loop_start_action_callback( $wp_query ) {
// Only for singular post views and for posts of main loop
if( is_singular( \'post\' ) && in_the_loop() ) {
// do something
}
}