Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged wordpress
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Turns Wordpress custom menus into responsive-ready menu that comes with foundation framework. code goes into functions.php
0
1107
posted 11 years ago by zartgesotten
Automatically link Twitter usernames in WordPress - Paste the code into the functions.php of your theme
0
1201
posted 11 years ago by ederwp
This snippet is great for someone creating a wp theme which supports RTL as well as LTR since in enables you to use one function for multiple instances.
0
515
posted 11 years ago by sagive
this is a simple script to take iframe parameters and build an iframe via a shortcode
1
868
posted 11 years ago by bitsculptor
Add this snippet to `wp-config.php` to remove the file editor links from the WordPress admin menus. Read more about... [disabling the WordPress file editor](http://www.orderofbusiness.net/blog/disable-wordpress-file-editor/)
0
739
posted 11 years ago by tacudtap
This is a combined version of Bill Erickson's hide post editor and rilwis' Metabox include for specific IDs. It hides the editor for a specified post ID. You can have multiple IDs, just separate with commas.
1
877
posted 11 years ago by rickahontas
This snippet shows how to retrieve information from the SEO plugin of Yoast, to be used for front-end use. This snippet is taken from the opensource free Nexus WP framework supporting front-end editing, custom layout and drag & drop.
0
885
posted 11 years ago by barkgj
Disable (remove) some sidebars, or widgets at all in **Wordpress** on page template with suffix in the template name (*-no-widgets.php, *-no-sidebars.php)
1
836
posted 11 years ago by Internet-Uzver
To solve an issue for a blog main page in wordpress to display the latest post in its entirety and the remaining posts only the excerpt.
1
678
posted 11 years ago by rickahontas
A simple widget for displaying a single post in a dynamic sidebar. Originally developed to accommodate a WP user who wanted full control of which posts were displayed and what order they were on a certain page.
0
815
posted 11 years ago by chasecrawford
Use below SQL code and replace references within the theme files.
0
922
posted 11 years ago by ihatetomatoes
Use this plugin:
http://wordpress.org/extend/plugins/members/
Settings are here:
http://justintadlock.com/archives/2010/07/10/meta-capabilities-for-custom-post-types
http://codex.wordpress.org/Function_Reference/register_post_type
Gravity Fo...
0
634
posted 11 years ago by ihatetomatoes
Easy PHP script for uploading and unpacking zip files to the server much faster
Steps to follow:
1. create folder on the webserver called "zipper" or something else
2. copy the following PHP code into a file called "zipper.php" into this folde...
2
4124
posted 11 years ago by jvandemerwe
Thanks Dan Gayle.
http://www.dangayle.com/import-feeds-wordpress-fetch-feed/
2
1179
posted 11 years ago by adambundy
[register_nav_menus](http://codex.wordpress.org/Function_Reference/register_nav_menus,"register_nav_menus")
[wp_nav_menu](http://codex.wordpress.org/Function_Reference/wp_nav_menu,"wp_nav_menu")
[in_category](http://codex.wordpress.org/Function_Ref...
0
865
posted 11 years ago by hell0world
So, you define a couple of fake funcs and require WP database config, after this you can require wp-db.php, create new wpdb and use it independency of WP for your ajax actions.
0
935
posted 11 years ago by Zayac
Add the following code to functions.php
1: WP backend
2: Appearance -> Editor
3: functions.php
0
751
posted 11 years ago by hell0world
This is some code using Thematic Child Theme overrides to remove thematic's post thumbnails and add Post Thumbnails outside of the .entry-content <div> so that POst Thumbnails can be styled separated from all post Meta. See this page for an example...
0
857
posted 11 years ago by AndrewThinkUp
I am using thesis developer version to redesign the site [FFXIV Gil](http://www.cheapffxivgils.com/ "Cheap FFXIV GIL").
Before using the code, you should add the Unique Hook Name to BOX in template(see [the official tutorial](http://diythemes.com/t...
0
719
posted 11 years ago by hell0world
Create navigation links without the need of a plugin, using paginate_links function of wordpress core.
0
1984
posted 11 years ago by rudwolf
Adding this snippet to the functions.php of your wordpress theme will restrict wp-admin access to certain users as defined at
http://codex.wordpress.org/Roles_and_Capabilities
And also still allows for user access to admin-ajax.php , async-uplo...
0
671
posted 12 years ago by jsmithies
A function to upload an image to the media library and set it as featured image of a post. It requires 2 params. The name of the upload field and of course the post ID.
This function is part of the WPelements library class available on Github. Fee...
0
1192
posted 12 years ago by krike
Thanks to @kaiser on WP answers for this.
Place this function in your functions.php file, then use it in your template with the function call like:
wpse19316_author_comments( 100 );
1
911
posted 12 years ago by adambundy