add_filter( ‘aioseo_sitemap_images’, /** * Find new images inside the post content which has Elementor galleries. * It only works for self-hosted attachments. * * @param array $images The images already found. * @param object $post The post object * @return…Continue reading
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
add_action( ‘current_screen’, function() { $screen = get_current_screen(); if ( $screen->id !== “dashboard” ) { add_action( ‘admin_enqueue_scripts’, function() { echo ‘ ‘; }); } });Continue reading
/** * 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
/** * 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 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
// Disable the Plugin and Theme Editor if ( ! defined( ‘DISALLOW_FILE_EDIT’ ) ) { define( ‘DISALLOW_FILE_EDIT’, true ); }Continue reading
add_filter(‘the_generator’, ‘__return_empty_string’);Continue reading