How to get override the WP Admin Syndication feed limit for a custom feed?

This is no normal filter. It’s a filter_ref_array. // Use this to alter your limit: add_filter( ‘post_limits’, create_function( ‘$a’, “return ‘LIMIT $start, 10’;” ) ); EDIT After I saw that this got marked as solution, I want to show you a more “best practice”-approach: function alter_feed_post_limits( $limits ) { return ” LIMIT 0,50″; } add_action( … Read more

Remove the ‘Press This’ Tool

Adding the following action essentially disables the press-this functionality, at least best I can tell: add_action(‘load-press-this.php’, function(){ wp_die(‘”Press This” functionality has been disabled.’); }); The option will still be there on the admin dashboard page, but attempting to use it will fail.

TinyMCE buttons broken

Solved: It appears chrome had a corrupt cache as I attempted to visit the backend on Firefox and noticed that the issue wasn’t there. I had to delete all Chrome browsing data (cache alone wouldn’t do it).