Skip to content

Tag: wordpress

WordPress Display Child Term of the Current Category Page?

Hi I am trying to display the child term of the current post category page. However I can figure out what am missing here. Thanks Answer In your code the taxonomy should be “category”, so your arguments for get_terms() should have “taxonomy” => “category”. $current_tax is irrelevant in this code then.…

WordPress: Add directory to post slug with function

I want to add a /news/ before every post slug. Like this: example.com /news/ post-slug/ If I add the /news/ in the permalinks settings, every custom post type is broken after it. I tried to add the following to every register_post_type: But that doesn’t help. I also tried the code from here: Unfortunate…