回答:
あなたはそれを複数の方法で行うことができます。次の2つの方法が最適です。
$post_id = 5// example post id
$post_content = get_post($post_id);
$content = $post_content->post_content;
echo do_shortcode( $content );//executing shortcodes
別の方法
$content = get_post_field('post_content', $post_id);
echo do_shortcode( $content );//executing shortcodes
Pieter Goosenに提案された後apply_filters
。
apply_filters
他のプラグインでコンテンツをフィルタリングしたい場合に使用できます。これにより、使用する必要がなくなりますdo_shortcode
例
$post_id = 5// example post id
$post_content = get_post($post_id);
$content = $post_content->post_content;
echo apply_filters('the_content',$content);
//no need to use do_shortcode, but content might be filtered by other plugins.
他のプラグインがこのコンテンツをフィルタリングすることを許可せず、ショートコード機能が必要な場合は、を使用してくださいdo_shortcode
。
ショートコードも必要ない場合は、で遊んでくださいpost_content
。
do_shortcode
raw content
投稿の取得中です。投稿に埋め込まれたショートコードは処理されません。それで私たちは自分たちでそれをやっていますdo_shortcode
apply_filters( 'the_content', $content );
。この方法では、the_content()
likeに適用されるすべてのフィルターとwpautop
ショートコードハンドラーがに適用され$content
ます。;-)。複数形に注意してくださいfilters
apply_filters
代わりに使用しdo_shortcode
ます。しかし、使用apply_filter
は純粋に彼らの環境決定に基づいています。私の答えも更新させてください。コミュニティ@PieterGoosen上ごケアのためのありがとうございました
ここでは、時々役立つと思われるもう1つの厄介な醜い方法を残しておきます。もちろん、API呼び出しを使用するメソッドが常に推奨されます(get_post()、get_the_content()、...)。
global $wpdb;
$post_id = 123; // fill in your desired post ID
$post_content_raw = $wpdb->get_var(
$wpdb->prepare(
"select post_content from $wpdb->posts where ID = %d",
$post_id
)
);
$id = 23; // add the ID of the page where the zero is
$p = get_page($id);
$t = $p->post_title;
echo '<h3>'.apply_filters('post_title', $t).'</h3>'; // the title is here wrapped with h3
echo apply_filters('the_content', $p->post_content);
を使用してget_page('ID')
。
$page_id = 123; //Page ID
$page_data = get_page($page_id);
$title = $page_data->post_title;
$content = $page_data->post_content;
get_page()
減価償却済み
get_page()
。それは非常に昔に減価償却されています。また、この問題に関するサイトには無制限のリソースがあります。グーグルでさえこれに関するたくさんの情報があります