답변:
여러 가지 방법으로 할 수 있습니다. 다음은 가장 좋은 두 가지 방법입니다.
$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
가끔 유용 할 수있는 또 다른 해킹 방법을 여기에 남겨 두겠습니다. 물론 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()
. 그것은 아주 오래 전에 폐기되었습니다. 또한,이 문제에 관한 사이트에 자원을 무제한으로도 이것에 정보의 톤을 가지고 구글,가