2012-02-26 77 views
0

我使一些網頁的內容滑塊是這樣的:WordPress的畫廊簡碼和get_page

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

了... ... 只能與$post變量:

$post = get_page($postID); 
$content = apply_filters('the_content', $post->post_content);