いくつかのページを次のようなコンテンツスライダーにレンダリングします。
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;
}
私が作成したすべてのショートコードは魅力のように機能しますが、gallery-shortcodeは無視されます(ショートコードではなく、空ではなく<p>
、何も返さない...)
助けていただければ幸いです、ありがとう