问题是当您试图获取模板目录时。你是getting
它代替了printing
bloginfo()
prints 输出
get_bloginfo()
retrieves 输出
因此,好的代码应该如下所示:
<?php
if ( has_post_thumbnail() ) {
echo \'<a href="\' . get_permalink($post->ID) . \'" >\';
the_post_thumbnail();
echo \'</a>\';
} else {
echo \'<img src="\';
echo get_bloginfo(\'template_directory\');
echo \'/img/fallback-featured-image.jpg" />\';
}