库短代码包含在wp-includes/media.php
文件有一个function gallery_shortcode(
这就行了。下面大约有25行:
$output = apply_filters( \'post_gallery\', \'\', $attr, $instance );
if ( $output != \'\' ) {
return $output;
}
此代码将退出并运行连接到的所有筛选器
post_gallery
, 如果有结果,则它不会运行自己的代码,而是带着过滤输出退出。
好了,知道了所有这些,您现在可以创建自己的过滤器,如下所示:
function your_awsome_theme_post_gallery( $output, $attr, $instance ) {
// your code here
}
add_filter( \'post_gallery\', \'your_awsome_theme_post_gallery\', 10, 3 );
请看以下两个示例:
的图库Bootstrap 2用于的库Bootstrap 4