Website Unavailable

add_action( ‘init’, function() { if ( ! current_user_can( ‘manage_options’ ) && ! is_admin() && ! is_login() ) { wp_die( ‘ Website Unavailable This version of the website is no longer active. The owner has moved the site to a new…Continue reading

(cloud) Dynamic Keyword Insertion

//leo is amazing function format_keyword_parameter($atts = []) { $defaults = [‘default’ => ”]; $atts = shortcode_atts($defaults, $atts); if (is_admin()) { return ‘[display_keyword’ . ($atts[‘default’] ? ‘ default=”‘ . esc_attr($atts[‘default’]) . ‘”‘ : ”) . ‘]’; } if (isset($_GET[‘kw’])) { $keyword…Continue reading

(cloud) RB JSTag – RingPools

// Domain to service mapping $domain_map = [ // CHS (Call Home Services) domains ‘callhomeservices.org’ => ‘CHS’, ‘calldentist.org’ => ‘CHS’, ‘callelectrician.org’ => ‘CHS’, ‘callremodel.org’ => ‘CHS’, ‘callpestcontrol.org’ => ‘CHS’, ‘callroofing.org’ => ‘CHS’, ‘callappliancerepair.org’ => ‘CHS’, ‘biohazardremoval.org’ => ‘CHS’, ‘callkeymaster.com’ =>…Continue reading

(cloud) Cache URL Parameters v3

//leo is amazing function cache_url_params() { if (!session_id()) { session_start(); } // Skip on admin or login pages if (is_admin() || in_array($GLOBALS[‘pagenow’], [‘wp-login.php’])) { return; } $bot_agents = [‘Googlebot’, ‘bingbot’, ‘Baiduspider’, ‘YandexBot’, ‘DuckDuckBot’, ‘Slurp’, ‘facebot’, ‘ia_archiver’]; $user_agent = isset($_SERVER[‘HTTP_USER_AGENT’]) ?…Continue reading