WordPress的add_theme_support介绍
在看twenty-fourteen这个官网主题时,会发现主题有 背景和头部设置。 这个是怎么出来的呢? 其实是…
在看twenty-fourteen这个官网主题时,会发现主题有 背景和头部设置。
这个是怎么出来的呢?
其实是用到了 add_theme_support 这个函数。
add_theme_support( ‘custom-background’, apply_filters( ‘twentyfourteen_custom_background_args’, array(
‘default-color’ => ‘f5f5f5’,
) ) );
require get_template_directory() . ‘/inc/custom-header.php’;
———–
比如缩略图,也是由这个函数在function.php里设置的。
代码:
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 672, 372, true );
add_image_size( ‘twentyfourteen-full-width’, 1038, 576, true );
————-
还有文章格式,也是由它设置的:
代码:
add_theme_support( ‘post-formats’, array(
‘aside’, ‘image’, ‘video’, ‘audio’, ‘quote’, ‘link’, ‘gallery’,
) );
——————–
http://codex.WordPress.org/Function_Reference/add_theme_support
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!