我在下面创建了一个函数,它可以更改特定类别中帖子的永久链接结构。一切都正常,但帖子中编辑slug的按钮不见了。
打印编辑按钮图像
add_filter( \'post_link\', \'idinheiro_custom_permalink\', 10, 3 );
function idinheiro_custom_permalink( $permalink, $post ) {
$category = get_the_category($post->ID);
if ( !empty($category) && $category[0]->slug == "negocios" ) {
$permalink = trailingslashit( home_url(\'/\'. $category[0]->slug . \'/\' . $post->post_name .\'/\' ) );
}
return $permalink;
}