我正在从2009年(不再提供服务)主题的孩子转变为twenty sixteen - 我以前在函数中有一个代码,它将周数生成为一个body类,例如w32
(例如本周。)
我在旧主题中使用了以下代码,但它在twenty sixteen. 有什么建议可以在那里实施吗?以下是functions.php
我的子文件夹的:
// Adds \'week\' and parent-page id body-class
add_filter( \'hybrid_body_class\', \'my_body_class\' );
function my_body_class( $class ) {
global $wp_query;
$time = time() + ( get_option( \'gmt_offset\' ) * 3600 );
$class .= \' w\' . gmdate( \'W\', $time );
if ( is_page() && $wp_query->post->post_parent )
$class .= \' parent-\' . $wp_query->post->post_parent;
return $class;
}
由于我不再使用混合主题,我尝试改变
hybrid_body_class
到
body_class
和多个其他变体-无效或有错误。。。