ThemeForest

Check if [xxx_shortcode] is used?

801 posts
  • Sold between 250 000 and 1 000 000 dollars
  • Elite Author
  • Won a Competition
  • Exclusive Author
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Europe
  • Bought between 10 and 49 items
+2 more
mixey says

Is there a way to check what shortcodes user used in the page/post? And based on that add a class to the body, or somewhere else in the templates file?

Thanks!

2842 posts
  • Elite Author
  • Sold between 250 000 and 1 000 000 dollars
  • Community Moderator
  • Bought between 50 and 99 items
  • Referred between 1000 and 1999 users
  • Has been a member for 3-4 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
+4 more
sevenspark moderator says

Off the top of my head, you’ll probably want to look into using the body_class filter. You can read a good post on it here: http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/

This is the basic idea:


add_filter('body_class', 'my_body_classes');

function my_body_classes($classes, $class) {
    // add 'my-class' to the $classes array
    $classes[] = 'my-class';
    // return the $classes array
    return $classes;
}

I’m not sure if you can call add_filter directly in your shortcode or if you’ll need to be more creative.

Hope that helps :)

801 posts
  • Sold between 250 000 and 1 000 000 dollars
  • Elite Author
  • Won a Competition
  • Exclusive Author
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Europe
  • Bought between 10 and 49 items
+2 more
mixey says
Off the top of my head, you’ll probably want to look into using the body_class filter. You can read a good post on it here: http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/

This is the basic idea:


add_filter('body_class', 'my_body_classes');

function my_body_classes($classes, $class) {
    // add 'my-class' to the $classes array
    $classes[] = 'my-class';
    // return the $classes array
    return $classes;
}

I’m not sure if you can call add_filter directly in your shortcode or if you’ll need to be more creative.

Hope that helps :)

Thanks! This is actually a good idea! To go from the opposite direction. Thanks!

by
by
by
by
by