3
嗨目前特定類別的職位分開的永久鏈接結構,在我們的WordPress我們默認的永久鏈接結構是如何保持在WordPress
abc.com/%postname%-%post_id%.html
但對特定的類別我想不同的永久鏈接結構 例如:爲照片分類我希望URL結構
abc.com/%post_id%.html
目前我使用下面的代碼,但它不工作
add_filter('post_link', 'custom_permalink', 10, 3);
function custom_permalink($permalink, $post, $leavename) {
// Get the categories for the post
$category = get_the_category($post->ID);
if ( !empty($category) && $category[0]->cat_name == "Photos") {
$permalink = home_url('/'.$post->ID .'.html');
}
return $permalink;
}
但是我沒有得到不同的特定類別帖子的固定鏈接結構。請幫幫我。
無論何時您嘗試更改固定鏈接設置,您還需要刷新重寫規則以更新它們(可以檢查數據庫以驗證這一點)。如果您沒有執行'flush_rewite_rules()'或轉到後端的'permalink'頁面,並點擊'Save'刷新規則,您寫的代碼從未受到影響。 – Ohgodwhy