- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已将 'sanitize_callback'
添加到每个 add_setting()功能,但仍然显示错误。请任何人检查我的代码片段并给我建议
function bookish_customize_register( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->remove_control( 'header_textcolor' );
$wp_customize->remove_control( 'background_color' );
$wp_customize->remove_section( 'background_image' );
$wp_customize->remove_section( 'header_image' );
/*-----------------------------------------------------------*
* Assent Color section
*-----------------------------------------------------------*/
$wp_customize->add_setting(
'tcx_link_color',
array(
'default' => '#000000',
'sanitize_callback' => 'bookish_sanitize_text',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Color_Control(
$wp_customize,
'link_color',
array(
'label' => __( 'Link Color', 'tcx' ),
'section' => 'colors',
'settings' => 'tcx_link_color'
)
)
);
/*-----------------------------------------------------------*
* Defining General Setting section
*-----------------------------------------------------------*/
$wp_customize->add_section(
'bookish_general_setting',
array(
'title' => 'General Settings',
'priority' => 1
)
);
$wp_customize->add_setting(
'bookish-logo',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize,
'bookish-logo',
array(
'label' => __( ' Logo', 'bookish' ),
'section' => 'bookish_general_setting',
'settings' => 'bookish-logo',
'priority' => 1
)
)
);
$wp_customize->add_setting(
'bookish-retina-logo',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize,
'bookish-retina-logo',
array(
'label' => __( 'Retina Logo', 'bookish' ),
'section' => 'bookish_general_setting',
'settings' => 'bookish-retina-logo',
'priority' => 2
)
)
);
$wp_customize->add_setting(
'bookish-favicon',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize,
'bookish-favicon',
array(
'label' => __( ' Favicon', 'bookish' ),
'section' => 'bookish_general_setting',
'settings' => 'bookish-favicon',
'priority' => 3
)
)
);
$wp_customize->add_setting(
'bookish-avatar',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize,
'bookish-avatar',
array(
'label' => __( 'Avatar', 'bookish' ),
'section' => 'bookish_general_setting',
'settings' => 'bookish-avatar',
'priority' => 4
)
)
);
$wp_customize->add_setting(
'bookish-retina-avatar',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize,
'bookish-retina-avatar',
array(
'label' => __( 'Retina Avatar', 'bookish' ),
'section' => 'bookish_general_setting',
'settings' => 'bookish-retina-avatar',
'priority' => 5
)
)
);
$wp_customize->add_setting(
'bookish_profile_name',
array(
'default' => 'Vincent Doe',
'sanitize_callback' => 'bookish_sanitize_text',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
'bookish_profile_name',
array(
'section' => 'bookish_general_setting',
'label' => 'Profile Name',
'type' => 'text'
)
);
$wp_customize->add_setting(
'bookish_profile_desc',
array(
'default' => 'I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks.',
'sanitize_callback' => 'bookish_sanitize_textarea',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
'bookish_profile_desc',
array(
'section' => 'bookish_general_setting',
'label' => 'Profile Description',
'type' => 'textarea'
)
);
$wp_customize->add_section(
'contact_setting',
array(
'title' => 'Contact Info',
'priority' => 2
)
);
$wp_customize->add_setting(
'contact_heading',
array(
'default' => 'Get in touch',
'sanitize_callback' => 'bookish_sanitize_text',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
'contact_heading',
array(
'section' => 'contact_setting',
'label' => 'Contact Heading',
'type' => 'text'
)
);
$wp_customize->add_setting(
'contact_email',
array(
'default' => '',
'sanitize_callback' => 'bookish_sanitize_email',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
'contact_email',
array(
'section' => 'contact_setting',
'label' => 'Email',
'type' => 'email'
)
);
$wp_customize->add_setting(
'contact_phone',
array(
'default' => '',
'sanitize_callback' => 'bookish_sanitize_number',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
'contact_phone',
array(
'section' => 'contact_setting',
'label' => 'Phone Number',
'type' => 'text'
)
);
}
add_action( 'customize_register', 'bookish_customize_register', 11 );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function bookish_customize_preview_js() {
wp_enqueue_script( 'bookish_customizer', get_template_directory_uri() . '/assets/js/customizer.js', array( 'customize-preview' ), '20130508', true );
}
add_action( 'customize_preview_init', 'bookish_customize_preview_js' );
function bookish_sanitize_text( $str ) {
return sanitize_text_field( $str );
}
function bookish_sanitize_textarea( $text ) {
return esc_textarea( $text );
}
function bookish_sanitize_number( $int ) {
return absint( $int );
}
function bookish_sanitize_email( $email ) {
if(is_email( $email )){
return $email;
}else{
return '';
}
}
function bookish_sanitize_file_url( $url ) {
$output = '';
$filetype = wp_check_filetype( $url );
if ( $filetype["ext"] ) {
$output = esc_url( $url );
}
return $output;
}
function tcx_customizer_css() {
?>
<style type="text/css">
.TopBanner { background-color: <?php echo get_theme_mod( 'tcx_link_color' ); ?>!important; }
</style>
<?php
}
add_action( 'wp_head', 'tcx_customizer_css' );
提前致谢
最佳答案
如果上述问题我有新的解决方案
'sanitize_callback' => 'esc_attr',
然后在主题检查器上检查主题后,我在那里找不到任何错误我希望对某人有所帮助。
关于wordpress - 发现一个没有清理回调函数的定制器设置。 WordPress 主题检查插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27841114/
我目前被指派去调查并以某种方式找到一种“定制”(对身份验证、常量、消息等进行修改)OpenSSH 的方法,并且作为一个“基于网络”的人,我真的不知道从哪儿开始。因此非常感谢评论。 问题: 我从 her
我拥有的 excel 文件超过 1,000,000 行和 26 列。 下面是用于查找特定数据的代码,并根据该数据创建一个新文件,目前创建一个新文件大约需要 15 分钟 请如果有专家可以帮助我更快地处理
我正在处理Zend_Form现在,我很难弄清楚如何: 使用表单按钮的自定义图像, 在特定位置插入文本和链接(就我而言,我想在提交按钮之前添加“忘记密码?”链接)。 我已通读手册,但没有看到任何相关内容
是否可以将图像添加到 UISwitch 背景,例如当状态为 ON 时(作为一个背景)和当状态为 OFF 时(另一个背景图像)? 最佳答案 要更改背景颜色(不是图像),您只需执行以下操作即可。这会更改领
到目前为止,我刚刚开始使用 Octave 并在我的终端上运行它。 每次打开提示符时,我的命令行都以: octave-3.4.0:1> 因此我使用以下内容来使其更短且更易于阅读: PS1('>> ')
在阅读Struts2文档时,我遇到了下面引用的段落 customizing controller - Struts 1 lets to customize the request processor
我正在尝试自定义 jQuery Tag-It 小部件 (http://aehlke.github.com/tag-it/) 以实现以下两种行为: 1)允许在标签中使用逗号(我可以通过自定义trigge
我是整个 Emacs 的新手,让我着迷的一件事是开箱即用的 Emacs 在编程时不会让您陷入困境。我主要使用 Python 和 C++ 进行编程,然后按回车键将光标发送回新行的第 1 列,而不是让你停
我有这些行 y DB,我想按以下顺序排序,并包含字符和数字。 Score 列是一个 varchar。获胜者和失败者也在分数栏中。 得分 WINNER 100+ 100 90 80+ 80 50 LOS
我正在使用 Bootstrap,您如何自定义轮播? 有什么建议吗? https://v4-alpha.getbootstrap.com/components/carousel/ 最佳答案 .activ
我有一个投票设置,使用脚本将其拉入我的 WP 页面。通过http://quipol.com/ EG 我已经通过 firebug 找到了样式并在其中相应地自定义了它们,但我想知道是否有一种方法可以实现
美好的一天。 如果 JLabel 和 JTextField 字体大小可以根据需要更改,是否也可以更改 JTable 的列名称和元素的字体样式(大小、外观、颜色)? 添加更多内容,我正在使用 Windo
进一步回答我的问题Java JFilechooser 。建议扩展 BasicFileChooserUI,重写 create/getModel 并提供 BasicDirectoryModel 的实现。
我想制作(好吧..正在制作..)一个标签页。我用 border-top:none 属性制作了一个“选项卡框”,所以它看起来像是选项卡的一部分,在里面我有一个表格。 我想知道,有没有办法删除表格标题的所
我有大量的项目正在进行中,还有几个解决方案(它们是项目“池”的子集)。有时拥有一个仅用于特定测试的 .sln 是件好事。 问题: NUGet 分别绑定(bind)到每个解决方案。 NUGet 喜欢在
我计划编写一些 git 钩子(Hook)作为一个项目,将用户的操作记录在数据库中。然后可以使用该数据库查询他的所有事件。我尝试记录的操作是 promise pull 推送 merge 分支机构 我想把
大家好,我是张飞洪,感谢您的阅读,我会不定期和你分享学习心得,希望我的文章能成为你成长路上的垫脚石,让我们一起精进。 在本文中,我们将学习中间件,以及如何使用它进一步定制应用程序。我
我正在尝试使用 yasg 自定义我的 api 文档。 首先,我想确定我自己的部分的命名,以及本部分应包含哪些端点。似乎部分的命名是基于不属于最长公共(public)前缀的第一个前缀,例如: 如果我们有
我需要(即客户要求)提供自定义键盘,供用户在文本字段和区域中输入文本。我已经有一些可以执行键盘操作并将测试附加到文本字段的东西,但是我想让它更通用并让它像标准的 iphone 键盘一样工作,即当用户选
我有一个项目,它在特定位置(不是/src/resources)包含资源(模板文件)。我希望在运行 package-bin 时将这些资源打包。 我看到了 package-options 和 packag
我是一名优秀的程序员,十分优秀!