Determining WordPress’ Version from the Host’s Command Line?
Just run this grep command from the command line: grep wp_version wp-includes/version.php
Just run this grep command from the command line: grep wp_version wp-includes/version.php
For the contact methods filter: user_contactmethods: function update_contact_methods( $contactmethods ) { unset( $contactmethods[‘aim’] ); unset( $contactmethods[‘jabber’] ); unset( $contactmethods[‘yim’] ); return $contactmethods; } add_filter( ‘user_contactmethods’, ‘update_contact_methods’ );
I was able to fix the error by hotfixing the RevSlider plugin on my server as documented here. In revslider/includes/framework/base-admin.class.php, I changed the following line (l. 21 of my version) from: private static $arrMetaBoxes=””; //option boxes that will be added to post to: private static $arrMetaBoxes = array(); //option boxes that will be added to … Read more