我试图隐藏一个由wordpress主题动态创建的下拉菜单中的选项。这是我使用jquery的代码:
jQuery("#role option[value='cars']").hide(); // role is css ID of selection; cars is the value of an <option> of <select>
我将该代码放在文件中:/wp-content/themes/my-theme-child/custom-scripts/own-script.js,然后将以下代码插入位于my-中的wordpress的functions.php中theme-child /目录:
function add_custom_script() {
wp_register_script('custom_script', home_url() . '/wp-content/themes/my-theme-child/custom-scripts/own-script.js', array( 'jquery' ));
wp_enqueue_script('custom_script');
}
add_action( 'wp_enqueue_scripts', 'add_custom_script' );
一切都没有改变或起作用。
您能给我个正确的方向吗?