Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有页面的永久链接挂钩,并且想为自定义帖子类型编写相同的功能,我尝试更改page_link为custom_post_type,但它不起作用
page_link
custom_post_type
add_filter('page_link', 'rating_permalinkas', 10, 3); add_filter('page_type_link', 'rating_permalinkas', 10, 3);
将其更改为
add_filter('post_link', 'rating_permalinkas', 10, 3); add_filter('post_type_link', 'rating_permalinkas', 10, 3);