日期:2015-04-20 阅读:1632
dmandwp系统 - wordpress系统和DM系统区块建站>>
twenty-fourteen这个官网主题function.php里的代码:
body_class:
function twentyfourteen_body_classes( $classes ) {
.....
return $classes;
}
add_filter( 'body_class', 'twentyfourteen_body_classes' );
http://codex.wordpress.org/Function_Reference/body_class
----------
post_class:
function twentyfourteen_post_classes( $classes ) {
if ( ! post_password_required() && ! is_attachment() && has_post_thumbnail() ) {
$classes[] = 'has-post-thumbnail';
}
return $classes;
}
add_filter( 'post_class', 'twentyfourteen_post_classes' );
http://codex.wordpress.org/Function_Reference/post_class
------
-------------
wp_title是用于seo的
function twentyfourteen_wp_title( $title, $sep ) {
$sep是可选 的
http://codex.wordpress.org/Function_Reference/wp_title