在 WordPress 中使用 jQuery 设置选择框样式
只是尝试使用此插件使用 jQuery 在 WordPress 项目上设置选择框的样式。
http://plugins.jquery.com/project/stylish-select-box/< /a>
jQuery(document).ready(function(){
// select box styles
jQuery('#genre-dropdown').sSelect();
});
当我在选择框上调用它时,它会显示 .newListSelected (可样式列表)的两份副本,而不是一份。下面是用于生成选择框的代码。
<?php
$args = array(
'taxonomy' => 'genre',
'id' => 'genre-dropdown',
);
wp_dropdown_categories( $args );
?>
我已经毫无争议地尝试了自定义分类法,并且在完全不同的页面上得到了相同的结果。
Just trying to style a select box on a WordPress project with jQuery using this plugin.
http://plugins.jquery.com/project/stylish-select-box/
jQuery(document).ready(function(){
// select box styles
jQuery('#genre-dropdown').sSelect();
});
When I call it on the select box it displays two copies of .newListSelected (the stylable list) instead of one. Below is the code used to produce the select box.
<?php
$args = array(
'taxonomy' => 'genre',
'id' => 'genre-dropdown',
);
wp_dropdown_categories( $args );
?>
I've tried with no argument for the custom taxonomy and on a totally different page with the same results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原始 URL 已失效,我使用 SelectBoxIt 进行了测试。以下示例创建一个管理菜单,其中显示样式化的类别下拉列表。关键细节是加载 jQuery 插件,添加捆绑的 WordPress 脚本作为依赖项,请参阅 Don' t 将 WordPress jQuery 出列。
文件
wp-content/plugins/my-plugin/styled-dropdown.php
:文件wp-content/plugins/my-plugin/ js/do-it.js:
The original URL is dead, and I tested with SelectBoxIt. The following example creates an admin menu that displays a styled categories dropdown. The key detail is to load the jQuery plugin adding the bundled WordPress scripts as dependencies, see Don't dequeue WordPress jQuery.
File
wp-content/plugins/my-plugin/styled-dropdown.php
:And the file
wp-content/plugins/my-plugin/js/do-it.js
: