我想从我的functions.php文件中将posts_per_page输入的'min'属性更改为'2'。
options-reading.php
<input name="posts_per_page" type="number" step="1" min="1" id="posts_per_page" value="<?php form_option( 'posts_per_page' ); ?>" class="small-text" /> <?php _e( 'posts' ); ?>
这是我所拥有的,但是不起作用。
functions.php
function my_enqueue($hook) {
if ( 'options-reading.php' != $hook ) {
return;
}
wp_enqueue_script( 'custom-javascript', get_template_directory_uri()
.'/assets/js/custom.js', '20151215', true );
}
add_action( 'admin_enqueue_scripts', 'my_enqueue');
custom.js
jQuery("#posts_per_page").attr({
"min" : 2
});
P.S:我在options-reading.php的末尾添加了javascript代码,并且效果很好,所以看来问题与javascript不相关。
答案 0 :(得分:0)
您使用JS
尝试过此操作吗?
var input = document.getElementById("posts_per_page");
input.setAttribute("min", 2);