Simple shortcode function : function my_shortcode_function($atts,$content=null){ // Do something return $content; } add_shortcode('my_shortcode','my_shortcode_function'); I wonder how to add more extra body class when user use this shortcode in contents....
  • May 19, 2022
  • 0 Comments
I need to have an alternating (even, odd…) class on posts to provide alternate highlights on a column. The best thing would be to attach this to the post_class()...
  • May 19, 2022
  • 0 Comments
I am trying to add the parent category class in post_class() of some posts from one of my subcatgories. I have an advanved theme so I need to style...
  • May 16, 2022
  • 0 Comments
I just want to add a class for the active page in the wp_list_pages().Is it possible? If so can I provide a particular class for a active page. Here...
  • May 16, 2022
  • 0 Comments