How can I get wordpress slug without certain phrase? [closed]

Previous answer here.

You’ll want to use str_replace

$permalink = get_the_permalink(); 
$permalink = str_replace("dog-", "", $permalink);