似乎没有任何特定的函数可供挂钩,因此后端解决方案需要更改“/模板部件/page/content-page.php”模板文件(通过child theme, 最好是),即在结束之前添加所需的元素</header>
标记,例如:
<header class="entry-header">
<?php the_title( \'<h1 class="entry-title">\', \'</h1>\' ); ?>
<?php twentyseventeen_edit_link( get_the_ID() ); ?>
<!-- START new code -->
<img src="http://image-source.jpg">
<span class="left-text">Insert your text here</span>
<!-- END new code -->
</header><!-- .entry-header -->
如果希望在特定页面上显示新内容,也可以添加条件语句,例如,对于首页:
<!-- START new code -->
<?php if ( is_front_page() ) { ?>
<img src="http://image-source.jpg">
<span class="left-text">Insert your text here</span>
<?php } ?>
<!-- END new code -->
对于特定的页面ID:
<!-- START new code -->
<?php if ( 25 == get_the_ID() ) { ?>
<img src="http://image-source.jpg">
<span class="left-text">Insert your text here</span>
<?php } ?>
<!-- END new code -->