WordPress函数 add_theme_support
最近做WP主题才知道原来已经增加了很多函数,例如add_theme_support
用法
add_theme_support($option,$defaults);
其中$option参数支持以下几个
- ‘post-formats’
- ‘post-thumbnails’
- ‘custom-background’
- ‘custom-header’
- ‘automatic-feed-links’
- ‘menus’
- ‘html5’
$defaults是默认值数组
其中 custom-background 能代替之前的 add_custom_background() 函数
使用方法在主题 functions.php 函数文件加入下面语句代替之前的add_custom_background()函数
$defaults = array( 'default-color' => '', 'default-image' => '', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '' ); add_theme_support( 'custom-background', $defaults );
其他用法可以参照wp官方