WordPress自定义文章字段函数:the_meta

WordPress模板函数the_meta用于输出文章自定义字段,必须用在The Loop主循环中。 the_…

WordPress模板函数the_meta用于输出文章自定义字段,必须用在The Loop主循环中。

the_meta()

该函数没有参数,以无序列表的方式输出文章自定义字段。

函数使用示例

<?php the_meta(); ?>

以上代码输出类似如下的内容:

<ul class='post-meta'>
	<li><span class='post-meta-key'>views:</span> 18</li>
	<li><span class='post-meta-key'>seo_title:</span> FTP常见错误解决办法</li>
	<li><span class='post-meta-key'>seo_description:</span> FTP常见错误解决办法的描述</li>
</ul>

扩展阅读

the_meta()函数位于:wp-includes/post-template.php

相关函数:

  • get_post_meta()
  • add_post_meta()
  • update_post_meta()
  • delete_post_meta()
  • get_post_custom()
  • get_post_custom_values()
  • get_post_custom_keys()
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册