日期:2015-04-24 阅读:2406
dmandwp系统 - wordpress系统和DM系统区块建站>>
wordpress添加自定义字段可以用插件,但这里,主要是讲如何用API来实现。
http://codex.wordpress.org/Function_Reference/add_meta_box
------------
相关插件:
https://metabox.io/docs/
用这个插件 : https://wordpress.org/plugins/meta-box/
--------------------
当然,用pods也可以的。
-------------
获取字段:
在single.php里:
get_post_meta( int $post_id, string $key = '', bool $single = false ) ---- 默认是false
比如:
$author = get_post_meta( $post->ID,'author',true);
pre($author);
如果是get_post_meta( $post->ID,'author');则得到数组。比如获取自定义字段的图片。
---------------
其他:
the_ID()和 get_the_id()
the_permalink()和 get_permalink()
the_date()如果有的记录日期不出来 ,可以用 echo get_the_date();
the_excerpt() https://codex.wordpress.org/Excerpt
the_content()
----------------------