是否可以只回显页面路径后缀?ie:如果路径/永久链接是示例。com/about,echo只是“about”?
我的页面路径与我的页面标题不同(例如:page title for example.com/about是“about ACME Co.”),因此我无法使用the_title()
我尝试只回显后缀,使其与每个页面的图标图像名称相同,因此如果页面是“关于”,则图标是icon_page-about.png
, 这样(wpse\\u page\\u后缀是我需要帮助的地方):
<img src="<?php bloginfo(\'template_directory\'); ?>/_img/icon_page-<?php wpse_page_suffix();?>.png" alt="Icon - <?php the_title();?>" />