必需:在文件search.php中找到Get_BloInfo(‘模板_url’)。改用GET_TEMPLATE_DIRECTORY_URI

时间:2017-11-21 作者:The WP Intermediate

主题检查错误→

REQUIRED: get_bloginfo(\'template_url\') was found in the file search.php. Use get_template_directory_uri() instead.
Line 21: <img src=\'<?php echo get_bloginfo(\'template_url\') ?>/img/no_results_found.png\'/>
我采取了行动并进行了更改,但该图像现在不会出现在实时网页中→

<img src=\'<?php echo get_template_directory_uri() ?>/img/no_results_found.png\'/>
上面有什么错误吗?

1 个回复
最合适的回答,由SO网友:WebElaine 整理而成

图像是否为儿童主题?如果是,请使用get_stylesheet_directory_uri() 相反,它将获取子主题URL。get_template_directory_uri() 获取父主题。

根据您的PHP版本,添加分号也可能会有所不同,通常image src使用双引号而不是单引号。

<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/no_results_found.png" />

结束