有几种方法可以做到这一点:
创建帖子时可以直接添加imaged。例如,在“标题”框中,我可以放一些废话如果你想对所有的多篇文章都这样做,那么在每篇文章中重复这一点可能会很乏味。相反,您可以在输出标题之前修改背面(循环中)中的标题:
<?php
$title = get_the_title();
$new_title = \'<img src="\'. get_template_directory_uri() .\'/images/blah.png">\' . $title; ?>
<h1 class="vfont"><?php echo $new_title; ?></h1>
您可以对标题应用筛选器:
add_filter(\'the_title\', function($title){
$title = \'<img src="\'. get_template_directory_uri() .\'/images/blah.png">\' . $title;
return $title;
}); ?>
<h1 class="vfont"><?php the_title(); ?></h1>