我目前正在使用类型插件来显示事件列表,我可以为管理员添加自定义字段以输入日期和位置,但我无法显示自定义字段以及网站中的帖子,请告诉我解决方案。
我尝试使用以下代码,但没有用,
$key="wpcf-date"; echo get_post_meta(4, $key, true);
$querystr = "SELECT $wpdb->posts.* FROM $wpdb->posts, $wpdb->postmeta";
$pageposts = $wpdb->get_results($querystr, OBJECT);
echo $pageposts;
答案 0 :(得分:0)
在Loop内,只需执行:
$wpcfdate = get_post_meta( get_the_ID(),'wpcf-date', true );
echo $wpcfdate;
答案 1 :(得分:0)
在您执行代码的页面上,您已将wpdb定义如下..
全球$ wpdb;
尝试回复RafH给出的2行以上的ID,以便您知道ID是否即将到来。
echo get_the_ID();