您当前的位置:首页 > TAG信息列表 > add-theme-support
如何在自定义徽标中添加css类?
我已启用custom-logo 用于我的主题,并将其打印为<?php the_custom_logo(); ?> 进入收割台。是否有机会直接向该图像添加更多类?默认情况下,它只附带custom-logo.
重写子主题中的后置格式
我使用的子主题只有video post格式,但父主题定义了所有post格式:add_theme_support( \'post-formats\', array( \'gallery\', \'link\', \'image\', \'quote\', \'video\', \'audio\', \'chat\' ) );我试过:remove_theme_support( \'post-formats\' ); add_theme_support( \'post-formats\', array(
为什么`ADD_THEME_SUPPORT(‘HTML5’,ARRAY(‘COMMENT-FORM’)`禁用客户端验证?
为了将HTML5标记用于注释表单,我将以下代码片段添加到functions.php:add_theme_support( \'html5\', array( \'comment-form\' ) ); 但是,它会在表单提交时禁用客户端验证,我会被重定向到错误页面:现在,如果我删除add_theme_support( \'html5\', array( \'comment-form\' ) ); 然后提交评论表,我得到客户端验证:有人能解释为什么会这样吗?是虫子吗?或预期的行为?我目前正在使用Wo