Servicos

function processa_spintax($text) { return preg_replace_callback('/\{([^{}]*)\}/', function ($match) { $parts = explode('|', $match[1]); return $parts[array_rand($parts)]; }, $text); } function aplicar_spintax_shortcode($atts, $content = null) { return processa_spintax($content); } add_shortcode('spintax', 'aplicar_spintax_shortcode'); function aplicar_spintax_automaticamente($content) { if (is_page() || is_single()) { return do_shortcode($content); } return $content; } add_filter('the_content', 'aplicar_spintax_automaticamente');
ligue
WhatsApp