如何在Wordpress中显示HTML id的slug

时间:2014-05-29 18:24:23

标签: php html css wordpress

我正在尝试获取id,以便我可以获得id =“the_title”如果标题是标题。这样我就可以使用自定义css n js的东西到特定的帖子。 我可以使用Php来做到这一点,但我想知道是否有Wordpress特定的代码可以用一两个字来完成。喜欢

the_title()

这是我想要的地方

<h3 class= "serviceslist" id="What to put here to get the post's slug"><?php the_title(); ?> : <a href="#"><i class="fa fa-chevron-down"></i></a></h3>

1 个答案:

答案 0 :(得分:1)

没有用于显示slug的内置功能。但是,您可以从全局$ post对象中获取它:

<h3 class= "serviceslist" id="<?php echo $post->post_name ?>">
    <?php the_title() ?> : <a href="#"><i class="fa fa-chevron-down"></i></a>
</h3>