Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged wordpress
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Clean up the crap in wp_head(). Put it in yo functions file.
1
872
posted 13 years ago by vagrantradio
This lists all the pages that are "Published", excluding the current one. Useful for a sitemap template.
0
604
posted 13 years ago by ToddSmithSalter
shortcode :
[rss size="10" feed="http://wordpress.org/news/feed/" date="true"]
0
739
posted 13 years ago by nicomollet
Our basic WP navigation menu setup. See [this page](http://codex.wordpress.org/Function_Reference/wp_nav_menu) for more documentation.
0
646
posted 13 years ago by mindshare
I did not created this, a friend provided it to me, and it seems really usefull so i thought i should share.
Usage: Paste that code in your functions .php and in your theme you put <?php> where 20 is the number of words you want
0
698
posted 13 years ago by johnsardine
HTML5 replacements for the doctype, etc. for WorPress themes. Add this code to your header.php file and you site will use HTML5. Be sure to double check the rest of your theme files for validation errors.
1
684
posted 13 years ago by mindshare
Here are a couple of snippets for removing the CSS, JS, and Dashboard widget created by the WP Geo plugin. I love this plugin but often only use it as a simple way to embed geo data on posts and don't actually need it to generate maps.
0
998
posted 13 years ago by mindshare
While working on the iteration of a blog with russian contents we had to change the slugs from cyrillic to transliterated russian.
[RusToLat](http://mywordpress.ru/plugins/rustolat/) is a great plugin that does just that, but unfortunately it onl...
0
790
posted 13 years ago by gryzzly
Dispaly a repeatable region using the Simple Fields wordpress plugin.
0
837
posted 13 years ago by mesh606
use this in the sidebar to show a top level page with child pages persistently
0
906
posted 13 years ago by mesh606
To get the simplest squeeze page possible: no header, sidebars or footer. Paste the following PHP in custom_functions.php. The first function is the filter that returns “false†instead of returning the content that would normal be there (in the h...
0
1304
posted 13 years ago by zachbrowne
The code references a custom post type (mysite_listings) and adds custom columns for editing the listings in the admin. This adds custom fields onto the edit / list views.
Note: You will want to change instances of "mysite_listings" with your own...
1
1288
posted 13 years ago by crypticsoft
Example shows how to register post types for :
* Listings (defined as 'mysite_listings' with the rewrite slug 'lookup')
* Then registers the 'usa_states' taxonomy to the mysite_listings post type.
0
1348
posted 13 years ago by crypticsoft
With this CSS to make the page 2 main content columns:
.custom #content .sidebar {width:48%; margin-right:2%; float:left;}
1
659
posted 13 years ago by kristarella
Here are some IDs for the default links WP 3.1 adds, found in /wp-includes/admin-bar.php:
my-account / my-account-with-avatar : the first link, to your account. Note that the ID here changes depending on if you have Avatars enabled or not.
my-blo...
0
750
posted 13 years ago by crs
This is a really short function you can use inside The Loop to get the parent page slug (useful to add to the body classes or something)
0
3078
posted 13 years ago by tomasdev
If a post is published without setting a featured image and there is an image attachment, this will select an image from the media library and set it as the featured image.
0
759
posted 13 years ago by chrs
Put this code in your theme, where you want to show followers count. Don't forget to change USERNAME.xml to your twitter user name.
0
842
posted 13 years ago by kirichev