Shortcode Usage, another WordPress plugin by windyjonas

Have you ever been in a situation where you have site with lots of content, a theme with lots of shortcodes and you have no idea where those shortcodes are used and if it is safe to remove any of them?

With this plugin you can search through all content and list the posts, pages and CPTs that use a specific shortcode, with direct links to edit each post.

Download Shortcode Usage from wordpress.org


maxitems = 500;
	}
	public function init() {
		add_management_page( __('Shortcode Usage', 'busu'), __('Shortcode Usage', 'busu'), 'read', 'shortcode-usage', array(&$this, 'shortcode_page') );
	}

	public function shortcode_page() { ?>
		

posts " . "where post_content like '%[{$shortcode}%' " . "and post_status in ('publish', 'draft') " . "and post_type not in ('revision', 'attachment', 'nav_menu_item') " . "order by post_title " . "limit {$this->maxitems}"; $myrows = $wpdb->get_results( $q ); if ( ! empty( $myrows ) ) : ?>

Usage of shortcode []

post_type; ?> ID, '', '', $row->ID); ?> <a target="_blank" href="ID); ?>">post_title; ?> post_status; ?> post_date; ?>

<input type="text" name="shortcode" value="" /> <input type="submit" value="" />

Registered shortcodes

$function ) : ?>

<a href="">

<?php } } $bu_shortcode_usage = new BuShortcodeUsage(); add_action( 'admin_menu', array(&$bu_shortcode_usage, 'init') );

Lämna ett svar

Din e-postadress kommer inte publiceras. Obligatoriska fält är märkta *