2016-12-21
很多人發(fā)現(xiàn)升級(jí)到WordPress 3.4.2 版后,添加自定義欄目按鈕失效,這可能是WordPress所有版本中明顯的bug,瘋狂升級(jí)的結(jié)果...
在官方?jīng)]有升級(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' );
?>