Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged wordpress
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Loads WordPress header for external functions like get_option();
0
1413
posted 15 years ago by vagrantradio
For example, when you can't get the post author to shop up using the_author(); it usually means your working outside the loop while that function is meant to work inside the loop.
This is a way around it. (got it from the forums)
0
964
posted 15 years ago by Rembrand
passing php variables to javascript with build-in function 'wp_localize_script'.
1
1426
posted 15 years ago by screamwork
Wordpress - 404 problem on physical directories. From the Support Forum.
0
1052
posted 15 years ago by kyuumeitai
This will fetch the custom post types, displayed as a list with their respective permalinks.
0
1710
posted 15 years ago by ivorpad
Pulling posts from outside wordpress (in the right way!) as a response for this snippet: http://snipplr.com/view/39523/pulling--posts-from-outside-wordpress/
0
1995
posted 15 years ago by bronet
Returns an HTML string of taxonomy terms associated with a post and given taxonomy. Terms are linked to their respective term listing pages.\r\n\r\nThis is for when a custom taxonomy is registered for a custom post type.
2
1911
posted 15 years ago by Jamie
Use this to remove or change the wp-admin footer text. Default is
Thank you for creating with WordPress.
1
1273
posted 15 years ago by Farhan
<p>Add this line to "functions.php" in your theme directory to remove RSS feeds specific to categories. The primary blog RSS feed will still be accessible. </p><p>Taken from a post by Hollywood grind on the Wordpress.org forums.</p>
0
1397
posted 15 years ago by rgsmith007
This may be necessary to properly add theme support for multiple menus.
0
1427
posted 15 years ago by Jamie
To exclude pages from wordpress search results include the following in your theme's functions.php
0
1104
posted 15 years ago by myke
You will need to add “define(‘WP_ALLOW_MULTISITE’, true);†in your wp-config.php to make the multisite function accessible. If you want to copy paste, use the code block below:
0
1042
posted 15 years ago by myke
By default wordpress does not include post thumbnails in RSS Feeds. Enable in by add this code the functions.php located inside your themes folder.
1
1912
posted 15 years ago by mediamilan
This custom function is useful if you want to get the ID of a page.
1
1437
posted 15 years ago by simonbouchard
This code will list all children pages from a parent page. This method is useful when you don\\\'t want to list all parent pages when you are on a parent page that have no children pages.
0
1134
posted 15 years ago by simonbouchard