【更改options-reading.php中的输入”
min”
属性】我想从我的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="http://www.srcmini.com/<
?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
});
附注:我在options-reading.php的末尾添加了javascript代码, 并且效果很好, 所以看起来问题与javascript不相关。
#1你是否使用JS尝试过?
var input = document.getElementById("posts_per_page");
input.setAttribute("min", 2);
推荐阅读
- 将标签文章更改为WordPress中的文章
- 在WooCommerce中更改结帐页面
- WordPress主题自定义中的类别/图像滑块不显示
- 中心整个博客和侧边栏(WordPress主题)
- #yyds干活盘点#Nginx服务器的安装以及配置
- #yyds干货盘点#Java ASM系列((093)反编译-方法参数)
- GitLab push 失败,提示rejected
- 关于 RocketMQClientID 相同引发的消息堆积的问题
- #私藏项目实操分享# 使用 JavaScript 上传 PDF 和 Excel 等二进制文件到 AB