很多童鞋發(fā)現(xiàn)升級(jí)到wordpress 3.4.2 版后,添加自定義欄目按鈕失效,這可能是wp所有版本中最明顯的bug,瘋狂升級(jí)的結(jié)果。
雖然官方對(duì)此bug未作出響應(yīng),不過非官方的修復(fù)方法已有人給出,你可以不必等待版本升級(jí),先使用該插件臨時(shí)解決該問題。
插件下載地址:http://wordpress.org/extend/plugins/hotfix/
上傳空間插件目錄并啟用即可。
或者將下面代碼添加到主題的functions模版中
<?php
/*
plugin name: fix custom fields in wp 3.4.2
version: 0.1
plugin uri: http://core.trac.wordpress.org/ticket/21829
description: implements a workaround for adding and updating custom fields in wordpress 3.4.2.
author: sergey biryukov
author uri: http://profiles.wordpress.org/sergeybiryukov/
*/
function fix_custom_fields_in_wp342() {
global $wp_version, $hook_suffix;
if ( '3.4.2' == $wp_version && in_array( $hook_suffix, array( 'post.php', 'post-new.php' ) ) ) : ?>
<script type=text/javascript>
jquery(document).delegate( '#addmetasub, #updatemeta', 'hover focus', function() {
jquery(this).attr('id', 'meta-add-submit');
});
</script>
<?php
endif;
}
add_action( 'admin_print_footer_scripts', 'fix_custom_fields_in_wp342' );
?>