MEDIAPATRIOT.CO.ID

Judul Berita

Paragraf pertama artikel...

Paragraf kedua artikel...

Paragraf ketiga artikel...

Kode Snippet Menyimpan Favicon Yang Bandel Tidak Mau Tersimpan di Website

// ===== FORCE SIMPAN FAVICON (VERSI LEBIH KUAT) =====add_action(‘customize_save_after’, function() {if (!isset($_POST[‘customized’])) return; $raw = stripslashes($_POST[‘customized’]); $data = json_decode($raw, true); if (json_last_error() !== JSON_ERROR_NONE) return; if (!empty($data[‘site_icon’])) { update_option(‘site_icon’, intval($data[‘site_icon’]));

Kode Snippet Block Semua Komentar di Website

// ===== BLOK TOTAL KOMENTAR WORDPRESS ===== // 1. Matikan fitur komentar di semua post typeadd_action(‘init’, function() {foreach (get_post_types() as $post_type) {if (post_type_supports($post_type, ‘comments’)) {remove_post_type_support($post_type, ‘comments’);}if (post_type_supports($post_type, ‘trackbacks’)) {remove_post_type_support($post_type, ‘trackbacks’);}}});