Collect and generate popular search term pages within Wordpress.
Features:
- Configurable display: Add your own css, set the title li, configure the sort order of displayed elements.
- Approval System: Approve and Revoke what is publicly displayed on you site.
- Word Filtering: Configure your own bad word filter to stop spammers using your system
Installation:
- Download and unzip to you plugin directory ({doc_root}/wp-content/plugins/wp-popular-search-terms/).
- Go to the plugins page in you admin section and activate this plugin.
- To configure go to the Setting -> Popular Search Terms page.
- To install in your theme create a page or post and add <!–wppst–> to it in HTML view.
- (optional) In your theme add wppst_title([$separator]) in the <title> of you header.php
e.g.: <title><?php wppst_title();?><?php wp_title(‘|’, true, ‘right’); ?><?php bloginfo(‘name’); ?></title - (optional) Add some CSS rules to make it pretty
#wppst_list is the main list element with li and a as children.
So to style a list item you would have this CSS selector
#wppst_list li {}
And to style the anchor (<a> tag) you would have this as the selector
#wppst_list li a {}
Download
Categories: Articles, Blogs, Technical, Wordpress
Maja Williams has written 12 articles.
Other articles by this author Maja Williams




Nice plugin, exactly what I needed but for developpers it would be nice to have a tag you could put in the (search)template files. now I’ve use to following code:
$wppst_table = $wpdb->prefix . ‘wppst’;
$terms = $wpdb->get_results (“SELECT * FROM ” . $wppst_table . ” WHERE approved = 1 ORDER BY count DESC LIMIT 10;”, ‘OBJECT’);
foreach ($terms as $term){
$searches .= “term . “‘>” . $i . “. ” . $term->term . ““;
$i++;
}
cheers,
dre
Thank you so much for this great plugin.