负责在数据库上保存帖子的功能(wp\\u insert\\u post)至少需要标题和内容:
http://codex.wordpress.org/Function_Reference/wp_insert_post
编辑:我创建了一个快速而肮脏的jquery解决方案。在函数文件或插件中输入:
<?php
add_action(\'admin_head\', \'post_title_check\');
function post_title_check() {
?><script type="text/javascript">
jQuery(document).ready(function($) {
$(\'input[name="save"]\').click(function() {
if($(\'input[name="post_title"]\').val() ===\'\') {
alert("Please input a title");
return false;
}
});
});
</script>\'
<?php
}
?>
基本上检查文本字段是否为空。如果是,则会给您一条消息并阻止您继续。如果它在该领域有什么东西,它会毫无疑问地提交。