WordPress帖子内容显示

时间:2015-03-02 作者:Anu

在我的帖子页面中,使用了帖子插件上的gallery来显示图像,而我正在尝试检索帖子内容-使用了\\u内容,但也显示了插件图像。如何仅获取文本编辑器内容?

2 个回复
SO网友:DINESH BHIMANI

使用此代码仅显示帖子内容

    $args = array(
    \'order\'    => \'ASC\'
);
query_posts( $args );

while ( have_posts() ) : the_post();
// get only post of content not work plug-in short code
$post_7 = get_post(get_the_ID()); 
echo $title = $post_7->post_content;

endwhile;

// Reset Query
wp_reset_query();

SO网友:Jakir Hossain
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; ?>
结束

相关推荐

Query posts distinct authors

我试图从一个随机排序的类别中获取帖子,但要确保作者不会重复自己。因此,我提出了这个问题,它按预期工作,但作者有可能会在这4篇文章中重复。那么,有没有办法确保它不会发生?我曾考虑使用$wpdb,但我希望有一个更直接的解决方案。$args = array ( \'post_type\' => \'post\', \'post_status\' => \'publish\', \'category_name\'