用自定义字段可以扩展 WordPress 文章的功能,在原有的基础上无线扩展文章储存的信息。这些信息一般都需要给访客查看,the_meta() 函数可以把所有的字段列出来,展示文章的扩展信息。
如果你要隐藏一些字段,不想在这里输出出来,可以参考:https://www.weixiaoduo.com/hidden-custom-fields/
用法
参数
此函数无参数。
返回值
此函数无返回值。
例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
while(have_posts()): the_post(); the_title('<h2 >','<h2>'); the_content(); the_meta(); /* 输出代码结构: <ul > <li><span >views:</span> 2192</li> <li><span >favorites:</span> 2</li> </ul> */ endwhile; |
其它
此函数位于:wp-includes/post-template.php
更多关于自定义字段的文章:https://www.weixiaoduo.com/tag/custom-fields