我将一些页面渲染到内容滑块,如下所示:
function tonal_get_slide($postID) {
$page_data = get_page( $postID );
$title = $page_data->post_title;
$content = "<h2>" . $title . "</h2>";
$content .= apply_filters('the_content', $page_data->post_content);
return $content;
}
所有我自己创建的短代码都像魅力一样,但画廊短代码被忽略了(它确实没有返回,不是短代码,没有空<p>
,没有......)
任何帮助都将不胜感激, 感谢
答案 0 :(得分:0)
$post
变量:
$post = get_page( $postID );
$content = apply_filters('the_content', $post->post_content);