function custom_get_bloginfo($show = '', $filter = 'raw') {
switch($show) {
case 'description':
$output = "my description";
break;
default:
$output = get_option('blogname');
break;
}
return $output;
}
add_filter('get_bloginfo', 'custom_get_bloginfo', 1, 2);
一個get_bloginfo功能我上面的代碼中使用它不會工作。如何覆蓋在WordPress
是的我知道說明可以通過設置 - >一般來改變。我確實需要重寫get_bloginfo函數 – sekar
你打算在主題或插件上使用它嗎?謝謝 –
正在使用插件 – sekar