Noindexi tag

// Remove ‘noindex’ meta tag from all pages unless explicitly set add_action(‘template_redirect’, function () { // Remove Yoast SEO ‘noindex’ if present if (function_exists(‘wpseo_robots’)) { remove_action(‘wp_head’, ‘wpseo_robots’); } // Remove All in One SEO ‘noindex’ if present if (class_exists(‘AIOSEO\Plugin\Common\Main’)) {…Continue reading

FC – Deshabilitar comentarios

add_action(‘admin_init’, function () { // Redirect any user trying to access comments page global $pagenow; if ($pagenow === ‘edit-comments.php’) { wp_safe_redirect(admin_url()); exit; } // Remove comments metabox from dashboard remove_meta_box(‘dashboard_recent_comments’, ‘dashboard’, ‘normal’); // Disable support for comments and trackbacks in…Continue reading

Envira – Change the Lightbox Image Counter label

/* Change the Image Counter text * * @link https://enviragallery.com/docs/how-to-change-the-image-counter-text/ */ add_filter( ‘envirabox_theme_image_counter’, ‘test_envirabox_theme_image_counter’, 10, 3 ); function test_envirabox_theme_image_counter( $html, $theme, $data ) { //Replace Video with your own label for the counter return str_replace(‘Image’, ‘Video’, $html); }Continue reading