-
Üyelik
31.05.2011
-
Yaş/Cinsiyet
36 / E
-
Meslek
Reklam
-
Konum
Adana
-
Ad Soyad
** **
-
Mesajlar
479
-
Beğeniler
80 / 67
-
Ticaret
1, (%100)
Tüm kodları functions.php içindekilerle değiştir. / Denedim ;)
function remove_more_jump_link($link) {
$offset = strpos($link, '#more-');
if ($offset) {
$end = strpos($link, '"',$offset);
}
if ($end) {
$link = substr_replace($link, '', $offset, $end-$offset);
}
return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
add_action('init', 'remheadlink');
function remheadlink() {
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'wp_generator');
}
?>