7 Comments

    1. HI Brad, definitely also possible. But two reasons why I didn’t mention that: (1) I tend to write more for the common WP user rather than devs; (2) Same problem of having to know exactly the shortcode you’re looking for and all it’s variable attributes in order to search for it. Sometimes you just don’t know all the shortcodes you’ve scattered throughout your site until you see them in a big long list like this plugin provides.

      Thanks for stopping by and contributing to the convo!

      1. I just had a problem whit a shortcode once.
        I just deleted it in the post.
        But that little plugin could come in handy
        if one had a lot of them.

  1. In regards to shortcodes in the template, you’d be better off calling the shortcodes functions itself inside a function_exists conditional. This way you don’t need to worry about updating your template when it’s removed

    if( function_exists( ‘shortcode_function’ ) ) {
    shortcode_function( $args );
    }

    1. That’s a good tip when possible. But often these shortcodes are used directly in content.

      Thanks for chiming in!

  2. Hmm, gets me contemplating the logic of possibly wrapping all unregistered shortcodes in hidden divs, hidden from public view, still accessible on the front to developers and scripts (i.e. one way to id all of them for removal/repair), and a recent topic I read suggests hidden content suspected as being part of the UI is still indexed and graded. Add a unique enough “.sc-hidden-article” class name to it and Google see’s “article” and thinks it’s going to be revealed through the experience somehow and you still get kudos for your content you really don’t want people to see (yet).

Leave a Reply

Your email address will not be published. Required fields are marked *