- Zurb Foundation Responsive Tables
- Responsive Tables Demo by Simon Elvery
- Responsive Tables(2) by Dave Bushell
- Responsive Table by Chris Coyier
- Responsive table to list by Aaron Gustafson
- Responsive Table with Column Select by Filament Group
- jQuery Mobile Showcase
- Pie chart responsive table
- Responsive data charts
- Responsive tables design patterns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: MultilingualPress Alternative Title to Admin Bar Site links | |
| * Plugin URI: https://github.com/inpsyde/multilingual-press | |
| * Description: | |
| * Author: Inpsyde GmbH | |
| * Author URI: http://inpsyde.com | |
| * Version: 20.05.2015 | |
| * Text Domain: multilingualpress | |
| * Domain Path: /languages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * This class will cause WP_Query to ignore a 'post_type' parameter when 'post_type__not_in' is set. | |
| * | |
| * Class Post_Type__Not_In | |
| */ | |
| class Post_Type__Not_In { | |
| /** | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // More background | |
| // @see http://wordpress.stackexchange.com/questions/102554 | |
| add_filter( 'http_request_args', 'fb_hidden_theme_12345', 5, 2 ); | |
| function fb_hidden_theme_12345( $r, $url ) { | |
| if ( FALSE !== strpos( $url, 'https://api.wordpress.org/themes/update-check' ) ) | |
| return $r; // Not a theme update request. Bail immediately. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * plugin.js | |
| * | |
| * Copyright, Moxiecode Systems AB | |
| * Released under LGPL License. | |
| * | |
| * License: http://www.tinymce.com/license | |
| * Contributing: http://www.tinymce.com/contributing | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Mime Types | |
| * Description: Allow other mime types on upload | |
| * Plugin URI: | |
| * Version: 1.0.0 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de | |
| * License: GPLv2 | |
| * License URI: ./assets/license.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| # A modification of Dean Clatworthy's deploy script as found here: https://github.com/deanc/wordpress-plugin-git-svn | |
| # The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo. | |
| # main config | |
| PLUGINSLUG="______your-plugin-name______" | |
| CURRENTDIR=`pwd` | |
| MAINFILE="______your-plugin-name______.php" # this should be the name of your main php file in the wordpress plugin | |
| # git config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* Register custom post types on the 'init' hook. */ | |
| add_action( 'init', 'my_register_post_types' ); | |
| /** | |
| * Registers post types needed by the plugin. | |
| * | |
| * @since 0.1.0 | |
| * @access public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Twitter Demo | |
| * Plugin URI: http://wp.tutsplus.com/tutorials/creative-coding/a-look-at-the-wordpress-http-api-a-practical-example-of-wp_remote_get/ | |
| * Description: Retrieves the number of followers and latest Tweet from your Twitter account. | |
| * Version: 1.0.0 | |
| * Author: Tom McFarlin | |
| * Author URI: http://tommcfarlin.com/ | |
| * License: GPL-2.0+ | |
| * License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| When I want to store some session data with the wrapper class, such as when a customer adds an item to the shopping cart, I simply do this: | |
| ```php | |
| $cart = array( | |
| array( | |
| 'item_id' => 43, | |
| 'item_name' => 'My Product Name' | |
| ), | |
| array( |