将下面代码添加到主题的functions模版中
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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' ); |
加在下面代碼中間。
1 2 3 | <?php ?> |
来源:http://core.trac.wordpress.org/attachment/ticket/21829/fix-custom-fields-in-wp342.php
摘自 http://zmingcx.com/wordpress-3-4-2-custom-section-bug.html
自測有效。
wordpress這麼一搞,害得我以後都不敢速度更新了==
————本日志版权归花莫笑所有。
日志内的相关图文请勿转载。