Add “Plugins” item to the admin top bar.

add_action( ‘admin_bar_menu’, function($wp_admin_bar) { $wp_admin_bar->add_node( array( ‘id’ => ‘plugins’, ‘title’ => ‘Plugins’, ‘href’ => esc_url( admin_url( ‘plugins.php’ ) ), ‘meta’ => false )); }, 999);Continue reading

Custom excerpt for password protected pages

/** * Snippet Name: Custom excerpt for password protected pages * Snippet URL: https://wpcustoms.net/snippets/custom-excerpt-password-protected-pages/ */ function password_required_excerpt( $excerpt ) { if ( post_password_required() ) { $excerpt = ‘This is a private page to request the password please contact the site…Continue reading

Make WP Affiliates look good

/** * Plugin Name: AffiliateWP – Affiliate Area Custom Styling * Plugin URI: https://affiliatewp.com * Description: Adds custom CSS styling to the Affiliate Area * Author: Andrew Munro, Sumobi * Author URI: http://sumobi.com * Version: 1.0 */ function affwp_affiliate_area_styling() {…Continue reading

Allow SVG Files Upload

/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading