Pinterest Plugin for WordPress Pinterest RSS Widget allows you to place a widget on your sidebar that fetches the most recent contents of a Pinterest user’s RSS feed and displays the corresponding thumbnail images. You can choose whether to show the description below the image, and you can set the height and width of the [...]
New Social Websites Buttons – PSD for PhotoShop A pack of social websites buttons for your blog or wordpress site. This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. Download Via Mediafire http://www.mediafire.com/?vc642cy29at8599
Creative User Register Form – PSD for PhotoShop This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. Download Via Mediafire
New Social Bookmarking Sites List 2013 The sites provide folksonomy-based tagging, sharing features, web feeds, and bookmarklets to easily add entries.[1] Users can access their bookmarks from any computer No New BookMarks for 2013 Please Visit This Article Social Bookmarking Sites List 2012
How to Disable / Stop RSS Feeds in WordPress to Prevent Scrapers No You Can Stop Rss in WordPress Script , You Need to Edit functions.php file in Your Theme And insert this Code in any Place function fb_disable_feed() { wp_die( __(‘No feed available,please visit our homepage!’) ); } add_action(‘do_feed’, ‘fb_disable_feed’, 1); add_action(‘do_feed_rdf’, ‘fb_disable_feed’, 1); [...]
How to Disable WordPress Search If you are looking for a way to disable all of WordPress’ search functionality, you could use this small snippet. All you have to do is copy and paste the code below into your functions.php file. function fb_filter_query( $query, $error = true ) { if ( is_search() ) { $query->is_search [...]
Search a Specific Post Type WordPress gives you the ability to search specific post types by using this small snippet. All you have to do is copy and paste the code below into your functions.php file. function SearchFilter($query) { if ($query->is_search) { // Insert the specific post type you want to search $query->set(‘post_type’, ‘feeds’); } [...]
Dynamically Search Categories and Child Categories Only This search form snippet could be useful within the category archive to allow your readers to search the child categories from any given parent category. In this snippet, all child categories from category ID 1 will be searched. Edit accordingly to suit your needs.
WordPress Drop-Down Category Search Form A useful function you could give to your WordPress search would be to allow your readers to filter the search results by targeting a specific category. This can be achieved by using a simple drop-down containing all of the category titles. All you have to do is replace the standard [...]
How To Exclude Posts or Pages from Search Results in WordPress If you would like to be able to control which posts or pages should be excluded from WordPress search results, all you have to do is copy and paste the code below into your functions.php file. In this snippet, posts with the IDs 0 [...]