Wordpress,检索后期价值

时间:2016-05-16 03:33:58

标签: php wordpress post

我需要添加一些静态值,就像我们在java中的属性文件中所做的那样。

如何在Wordpress中执行相同操作?

我尝试过POST approch,但我无法在前端检索post值。

有人可以建议吗?

我尝试检索帖子如下:

$args = array(
    'slug' => 'cpurl',
    'post_type' => 'cpurl',
    'post_status' => 'draft',
    'numberposts' => 1
);
$my_posts = get_posts($args);
print_r ($my_posts);

显示空数组

1 个答案:

答案 0 :(得分:0)

$postid = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_title = '" . $postTitle . "'" );
$content_post = get_post($postid);
$cpUrl = $content_post->post_content;

使用上面的代码来获取帖子内容,使用可用的内容标题