特定のページのコンテンツを(IDで)取得する


14

次のフロントページテンプレートを作成しました。

ここに画像の説明を入力してください

これらの大きなLorem Ipsumブロックの代わりに、特定のページからの「抜粋」を表示して、そのボックス(一定数の文字)を埋める必要があります。

ページコンテンツを文字列形式で取得し、それをエコーアウトして特定の文字数にトリミングするにはどうすればよいですか?

回答:


22
<?php

// would echo post 7's content up until the <!--more--> tag
$post_7 = get_post(7); 
$excerpt = $post_7->post_excerpt;
echo $excerpt;

// would get post 12's entire content after which you
// can manipulate it with your own trimming preferences
$post_12 = get_post(12); 
$trim_me = $post_12->post_content;
my_trim_function( $trim_me );

?>

21

どうぞ !

<?php
$my_id = 5369;
$post_id_5369 = get_post($my_id);
$content = $post_id_5369->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>

4
コードが何をし、質問にどのように答えるかを説明してください。一部のユーザーは、少し説明しないとコードを理解できない場合があります。
サイブメタ

the_contentフィルターを追加した方法がとても気に入っています。そのために+1。
モハマドマーサリーン16年

美しい作品!
チャールズザビエル

2

このコードを使用することができます。ページ番号でpage_id = 19を微調整してください。

<?php $the_query = new WP_Query( 'page_id=19' ); ?>

<?php while ($the_query -> have_posts()) : $the_query -> the_post();  ?>

                       <?php the_excerpt(); ?>


     <?php endwhile;?>

1
このサイトへようこそ。これが最初の答えのようです。あなたの答えが問題を解決する理由と方法の説明は常に良いです。
サイブメタ14


0

ループ内にいる場合、これを実行します。

<?php
$my_excerpt = get_the_excerpt();
if ( $my_excerpt != '' ) {
    // Some string manipulation performed
}
echo $my_excerpt; // Outputs the processed value to the page

または、IDを持っている場合は、投稿を取得してからpost_excerptメンバー変数を訴えます

例えば

$post = get_post( $post_id );
echo $post->post_excerpt;

0

このコードを試して、変更するだけpage_idです:

<?php $my_query = new WP_Query('page_id=20');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
 <h3><?php the_title(); ?></h3>
    <div class="text">

        <?php echo wp_trim_words( get_the_content(), 15, '...' ); ?>
 <a href="<?php echo get_page_link(); ?>" class="read-more">Read More</a>
    </div>

 <?php endwhile; ?>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.