Polylang Importer

add_action(‘pmxi_saved_post’, function($post_id, $xml_node, $is_update) { // Check if Polylang & DeepL API are active if (!function_exists(‘pll_set_post_language’) || !class_exists(‘PLL_DeepL’)) return; // Get language code from custom field $lang_code = get_post_meta($post_id, ‘language_code’, true); if (!$lang_code) $lang_code = ‘en’; // Default fallback //…Continue reading

[Desktop] Main Dashboard 2.3

/** * Optimized Dashboard for WPCode Shortcodes * Combined with advanced features from the beautiful version */ // Register our AJAX handler for processing shortcodes – EXACTLY as in “Dashboard Main version” add_action(‘wp_ajax_process_wpcode_shortcode’, ‘myonlytab_process_shortcode’); add_action(‘wp_ajax_nopriv_process_wpcode_shortcode’, ‘myonlytab_process_shortcode’); /** * Process any…Continue reading

Disable Automatic WordPress Updates

// Disable core auto-updates add_filter( ‘auto_update_core’, ‘__return_false’ ); // Disable auto-updates for plugins. add_filter( ‘auto_update_plugin’, ‘__return_false’ ); // Disable auto-updates for themes. add_filter( ‘auto_update_theme’, ‘__return_false’ );Continue reading