其实所有插件后端代码都等同于加入到 functions.php 的代码片段,functions.php 里的代码片段可以做成插件,那么反过来插件自然也可以集成到 functions.php 里面。插件主要是方便管理,但同时也增加了静态资源请求数,如果你知道怎么处理这些请求,其实用不用插件也知道该如何优化网站 —— 扯远了。 下面我就直接贴上代码版的吧。 注释里我已经注明插件原作者,主要修改的地方是:将 js 转为 script 标签内容,等于消除一个请求,翻译也省了,换成中文。 将下面代码复制粘贴到你主题的 functions.php 文件里面,这个不用解释了吧? /** *发表文章时禁止与已存在的标题相重复 *ModifyfromPlugin:DuplicateTitleValidate *Description:thispluginhelp,notallowpublishDuplicateTitle. *Author:hasanmovahed *Reviser:INLOJV *Version:1.0 *AuthorURI:http://www.wallfa.com *ReviserURI:http://www.inlojv.com */ //发表文章页面,前端抓取标题并使用AJAX发送请求 add_action(‘admin_print_footer_scripts’,‘duplicate_titles_enqueue_scripts’,100); functionduplicate_titles_enqueue_scripts(){ ?> <script> jQuery(function($){ function checkTitleAjax(title, id,post_type) { var data = { action: ‘title_checks’, post_title: title, post_type: post_type, post_id: id }; $.post(ajaxurl, data, function(response) { $(‘#message’).remove(); $(‘#poststuff’).prepend(‘<div id="message" class="updated below-h2 fade ">’+response+" </div>’); }); }; $(‘#title‘).change(function() { var title = $(‘#title‘).val(); var id = $(‘#post_ID’).val(); var post_type = $(‘#post_type’).val(); checkTitleAjax(title, id,post_type); }); }); </script> <?php } //接收前端ajax参数 add_action(‘wp_ajax_title_checks’,‘duplicate_title_checks_callback’); functionduplicate_title_checks_callback(){ global$wpdb; $title=$_POST[‘post_title‘]; $post_id=$_POST[‘post_id’]; $titles="SELECTpost_titleFROM$wpdb->postsWHEREpost_status=‘publish’ANDpost_type=‘post’ ANDpost_title=‘{$title}’ANDID!={$post_id}"; $results=$wpdb->get_results($titles); if($results){ echo"<span style="’color:red’">"._(‘此标题已存在,请换一个标题!’,")."</span>"; }else{ echo‘<span style=""color:green"">’._(‘恭喜,此标题未与其他文章标题重复!’,")."</span>’; } die(); } //检测后端标题并且避免同名文章更新草稿 add_action(‘publish_post’,’duplicate_titles_wallfa_bc’); functionduplicate_titles_wallfa_bc($post){ global$wpdb; $title=$_POST[‘post_title‘]; $post_id=$post; $wtitles="SELECTpost_titleFROM$wpdb->postsWHEREpost_status=‘publish’ANDpost_type=‘post’ ANDpost_title=‘{$title}’ANDID!={$post_id}"; $wresults=$wpdb->get_results($wtitles); if($wresults){ $wpdb->update($wpdb->posts,array(‘post_status’=> ‘draft’),array(‘ID’=>$post)); $arr_params=array(‘message’=>’10’,‘wallfaerror’=>‘1’); $location=add_query_arg($arr_params,get_edit_post_link($post,‘url’)); wp_redirect($location); exit; } } ///文章提交更新后的提示 add_action(‘admin_notices’,‘not_published_error_notice’); functionnot_published_error_notice(){ if(isset($_GET[‘wallfaerror’])==1){ ?> <div class=""updated""></div> <p style="’color:red’"><!--?php--><!--?php--> <?php } } //禁用自动保存 add_action(‘wp_print_scripts’,‘disable_autosave’); functiondisable_autosave(){ wp_deregister_script(‘autosave’); }