問題描述
我想在標籤名稱中使用逗號?例如,"hello, world"或"portland, or",但 Wordpress 保持分離。我可以從類別頁面進行:
image http://img839.imageshack.us/img839/6869/picturepp.png
它顯示正常。但是從帖子側邊欄添加的任何內容都不會顯示在此處:
image http://img52.imageshack.us/img52/4950/picture1oax.png
這裏有一些討論:http://core.trac.wordpress.org/ticket/14691,但看起來可能無法解決,至少有一段時間。
在此期間,我正在尋找一個比類別頁面添加類別更簡單的解決方案。
我嘗試搜索插件,沒有看到任何有用的東西。當顯示類別列表或標籤時,有幾個處理用其他字符替換逗號,但是我沒有看到允許用户替換默認分隔符的任何插件。
我不在乎我是否必須自己修補核心。理想情況下,我可以編寫一個插件,但是在查看了一些代碼之後,我無法弄明白哪裏可以處理。
有沒有人有解決方案,或提示什麼功能和 javascript 開始黑客攻擊?我不知道從哪裏開始看代碼。
最佳解決方案
不需要核心黑客 – 感謝:HOOKS 。
鈎子允許用一個很好的組合來解決這個問題
-
在輸出之前用 「,」 替換”–“ 的過濾器
-
和一個”if” 塊,以確保輸出也沒有為管理界面過濾:)
-
最後,用格式”Fox–Peter” 而不是 「Fox,Peter」 保存所有的標籤,
以下是代碼:
// filter for tags with comma
// replace '--' with ', ' in the output - allow tags with comma this way
// e.g. save tag as "Fox--Peter" but display thx 2 filters like "Fox, Peter"
if(!is_admin()){ // make sure the filters are only called in the frontend
function comma_tag_filter($tag_arr){
$tag_arr_new = $tag_arr;
if($tag_arr->taxonomy == 'post_tag' && strpos($tag_arr->name, '--')){
$tag_arr_new->name = str_replace('--',', ',$tag_arr->name);
}
return $tag_arr_new;
}
add_filter('get_post_tag', 'comma_tag_filter');
function comma_tags_filter($tags_arr){
$tags_arr_new = array();
foreach($tags_arr as $tag_arr){
$tags_arr_new[] = comma_tag_filter($tag_arr);
}
return $tags_arr_new;
}
add_filter('get_terms', 'comma_tags_filter');
add_filter('get_the_terms', 'comma_tags_filter');
}
也許在我的博客文章的一些額外的細節,該主題的幫助以及.. http://blog.foobored.com/all/wordpress-tags-with-commas/
格雷斯,安迪
參考文獻
注:本文內容整合自 Google/Baidu/Bing 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。