你需要介绍你自己的钩子(我就是这么做的)。我在以下代码段中添加了一个自定义挂钩:
<header class="entry-header alignwide">
<?php the_title( \'<h1 class="entry-title">\', \'</h1>\' ); ?>
<?php do_action(\'custom_after_title_hook\'); ?>
<?php twenty_twenty_one_post_thumbnail(); ?>
</header>
要使其正常工作,您需要:
访问标题。php或在子主题中覆盖它最后一件事很简单:只需调用函数中的函数即可。php文件如下:
<?php
function custom_after_title_hook(){
$some_var = \'<span>some text after title</span>\';
return $some_var;
}
add_action(\'my_custom_action\', \'custom_after_title_hook\');
?>
您也可以将其添加到插件中,但需要使用“template\\u include”。