wordpress文章标签tag自定义调用方法
文章标签对于seo来说非常的重要,我们也可以通过标签对相同类型的文章进行分类。wordpress网站有默认的文章标签功能,我们只需要调用出来就可以了。
wordpress默认的标签函数为:the_tags
在系统文件:wp-includes/category-template.php 里面
/** * Retrieve the tags for a post. * * @since 2.3.0 * * @param string $before Optional. Before list. * @param string $sep Optional. Separate items using this. * @param string $after Optional. After list. */function the_tags( $before = null, $sep = ', ', $after = '' ) { if ( null === $before ) $before = __('Tags: '); $the_tags = get_the_tag_list( $before, $sep, $after ); if ( ! is_wp_error( $the_tags ) ) { echo $the_tags; }}
我们能看到the_tags函数是通过调用get_the_tag_list进行数据获取。
下面给大家分享一下 the_tags 的使用实例:
第一种调用方法:
<?php the_tags(); ?>
输出的样式为:标签:XXX, XXXX
第二种方法:
<?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?>
可以对调用标签进行样式编辑,根据自己的需要进行调整。
列如:
<?php the_tags('<span class="f14">', '</span><img class="dott" src="/wp-content/themes/beichuan/images/dott.png" > <span class="f14">', '</span>'); ?>
显示效果:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END