Updates for a private plugin?

Looks like the applicable code is in wp-includes/update.php, wp_update_plugins(): $to_send = (object) compact(‘plugins’, ‘active’); $options = array( ‘timeout’ => ( ( defined(‘DOING_CRON’) && DOING_CRON ) ? 30 : 3), ‘body’ => array( ‘plugins’ => serialize( $to_send ) ), ‘user-agent’ => ‘WordPress/’ . $wp_version . ‘; ‘ . get_bloginfo( ‘url’ ) ); $raw_response = wp_remote_post(‘http://api.wordpress.org/plugins/update-check/1.0/’, $options); … Read more

Adding a Taxonomy Filter to Admin List for a Custom Post Type?

UPDATE: I’ve included a new complete answer but even so I’ve left my original response at the bottom to which the first few comments reference. Hi @tarasm: Although I said it shouldn’t be hard it is a little involved. But before we dig into the code… The Screenshots: …let’s check out some screen shots for … Read more

Best collection of code for your 'functions.php' file [closed]

Enable Hidden Administration Feature displaying All Site Settings Tested on: WordPress 3.1 RC3 This little piece of code does something pretty cool. It will add an additional option to your settings menu with a link to “all settings” which will show you a complete list of all the settings you have within your database related … Read more

Use Notepad++ as HEX-Editor

It seems to me you tried to install a hex editor and ended up in the wrong tool (Plug-In) Converter (ASCII -> HEX) as mentioned in your question above. The installation process of the HexEditor is somewhat confusing because it is currently available only in the Plugins Admin for the 32-bit version. A simple solution … Read more

How to view Plugin Manager in Notepad++

As of Notepad++ version 7.5, plugin manager is no longer shipped with Notepad++ From the Notepad++ release notes: You may notice that Plugin Manager plugin has been removed from the official distribution. The reason is Plugin Manager contains the advertising in its dialog. I hate Ads in applications, and I ensure you that there was no, … Read more