Welcome To Snipplr
Everyone's Recent PHP Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Displaying your latest tweets is a good way to encourage people to follow you on Twitter. The most common place to display tweets is in the sidebar, although you can add them to any area of the website.
0
616
posted 10 years ago by i-am-andy
second level of categories (when offset=-1 doesn't work, like for "get_category_link()"), pictures must be called exactly like category slug and placed to "catimg" folder. also i used "substr" for cut decription (314 symbols but you can change it). U...
0
383
posted 10 years ago by shin
Convert 12-hour time format with hour, minutes, seconds, and meridiem into 24-hour format. Performs data correction to make sure hours, minutes and seconds have leading zeros if needed.
The trick here is to use strtotime() where we pass the time...
0
2743
posted 10 years ago by kosinix
Sum all elements of a bidimensional or multi-dimensional array with an assigned key
0
546
posted 10 years ago by eortiz
This is a route that ables the website to show the user's profile to the world.
0
341
posted 10 years ago by rafaelfragosom
Get Wordpress wp_get_archives for a specific category... by default it sghows all categorys
0
948
posted 10 years ago by i-am-andy
Get current url. Include domiain. For example :http:// localhost/root_folder.
0
770
posted 10 years ago by tucq88
Just an example showing how to minimise the mixture of HTML and PHP in a view.
0
434
posted 10 years ago by JonnySnip3r
Place the function in your functions.php file of your theme...
Then, simply call like this: wp_paginate('', 3);
The first param is optional, the second dictates how many pages before and after the current page link will show...
0
431
posted 10 years ago by thewickedchemist
This function searches the current working directory (or any other directory path that you specify with parameter $p) for a file, named $f, and returns the full path and filename of the first occurrence, or false if it is either not found or the maxi...
0
496
posted 10 years ago by VisionHive
Insert this into a custom node template to display the metatags inserted in my the metatag module.
<div>nid; ?>" class="<?php> clearfix"<?php>><?php>
0
412
posted 10 years ago by mktimes5
easy way of catching and displaying errors and return values from a exec() command back in PHP.
0
477
posted 10 years ago by iroybot
easy way of catching and displaying errors and return values from a exec() command back in PHP.
0
634
posted 10 years ago by iroybot
Reduces the string size according to the parameter that has been send and put '...' at the end of the new string
0
348
posted 10 years ago by Gianino
Add this code in the top of your index.php and set $page_url to your application final tab/app URL.
0
547
posted 10 years ago by Whiteagle
The awesome Geo Mashup Plugin for WordPress allows for auto-embedding a map showing the location of the Post, Page etc via Shortcode or adding a line of PHP into the Theme file/s.
The code below, added as a Plugin, will make a map appear at the en...
0
582
posted 10 years ago by ecksteing
//This will grab taxonomies three levels deep (parent, child, grandchild) and display them
//in an accordion fashion. Parent is the header, then child with a checkbox, if checked, will
//display grandchild taxonomies.
//Uses jQuery Accordion (do...
0
482
posted 10 years ago by dnnsldr
Class that convert arrays to csv format, downloads CSV files and saves to disk on server.
0
603
posted 10 years ago by TimoZachi
I use this primarily for debugging purposes. This simply takes an array and creates an expandable item that prints the array out in a \<pre\> wrapping, making it easy to read. Very basic snippet.
0
619
posted 10 years ago by ringo380
I needed away to redirect to a custom BP component upon login for users and this works great. Add this to your functions file. If you are the admin, it will redirect you to the wp-admin.
0
8007
posted 10 years ago by dnnsldr
Allows you to connect to different datasources. Very common to use something like this for development,staging and production deployments.
0
493
posted 10 years ago by evinweissenberg
This is a useful class which utilizes Phil Sturgeon's helpful restclient (http://getsparks.org/packages/restclient/versions/HEAD/show). Reference the URL attached for PinnacleCart API docs.
Example request URLs to get products and categories:
#...
0
599
posted 10 years ago by crypticsoft