我需要显示自定义帖子模板名称。实际上我想为每个自定义帖子模板加载不同的 css。为此,我需要自定义帖子模板名称,但无论如何我都找不到。这是我的目录的结构。
index.php
single.php
header.php
footer.php
fullpage-post.php // This is custom template
two-column-right-menu-post.php
two-column-left-menu-post.php
现在在标题中我想要链接这个
if($custom_template->name == 'two-column-right-menu-post'){
?> <link href = 'style.php'> <?php
}else{
?> <link href = 'style1.php'> <?php
}
我怎样才能做到这一点。我四处搜索,找不到解决方案。