Menghapus Protected : pada title wordpress post
Untuk menghapus kata protected: di wordpress title cukuplah mudah yaitu dengan menambahkan filter pada functions.php dengan menfilter text title di wordpress post. yaitu dengan me replace kata Protected dengan judul asli / dengan membuang Kata Protected:
langkahnya :
buka file functions.php
tambahkan kode dibawah ini
kemudian simpan file functions.php
selese
silakan refress halaman anda
langkahnya :
buka file functions.php
tambahkan kode dibawah ini
function remove_protected_text($title) {
$protected = __('Protected: %s');
$protected = preg_replace('/ %s/', '', $protected);
$match = "/${protected}/";
$replacement = '';
$title = preg_replace($match, $replacement, $title);
return $title;
}
add_filter( 'the_title', 'remove_protected_text');
kemudian simpan file functions.php
selese
silakan refress halaman anda