Skip to content

Instantly share code, notes, and snippets.

<?php $download=json_decode(wp_remote_retrieve_body(wp_remote_get('http://www.reddit.com/r/Wordpress/comments/1a23de/reddit_comments/.json')));
foreach ($download as $comments){
?><ul><?php
foreach ($comments->data->children as $comment){
if($comment->data->body != null){
?><li><a href="http://www.reddit.com/user/<?php echo($comment->data->author)?>" target="_blank">
<?php echo html_entity_decode($comment->data->author); ?></a><br /><?php
echo html_entity_decode($comment->data->body); ?></li><br /><br /><ul><?php
foreach($comment->data->replies->data->children as $reply){
?><li><a href="http://www.reddit.com/user/<?php echo($reply->data->author)?>" target="_blank">
@programmingthomas
programmingthomas / maxifyjs.html
Last active September 13, 2017 09:19
MaxifyJS v0.1 - Minification is cool because it kills whitespace and optimizes your code. Maxification is better; it adds whitespace, unnecessary comments and makes your code inefficient.
<!DOCTYPE html>
<html>
<head>
<title>MaxifyJS 0.1</title>
<style>
textarea
{
height:600px;
max-height:600px;
width:49%;
@seanbuscay
seanbuscay / git_create_orphan.sh
Created June 27, 2013 15:26
Create an orphan branch in a repo.
cd repository
git checkout --orphan orphan_name
git rm -rf .
rm '.gitignore'
echo "#Title of Readme" > README.md
git add README.md
git commit -a -m "Initial Commit"
git push origin orphan_name
@johnReeve
johnReeve / custom.php
Created December 4, 2013 18:08
How I do my WordPRess site specific configuration fields
<?php
/* setup custom general settings */
function ts_theme_settings () {
register_setting( 'general', 'homepage_slider_wide' );
add_settings_field(
'homepage_slider_wide',
'Homepage Slider (Wide)',
'homepage_slider_wide_callback',
@DrewAPicture
DrewAPicture / Gruntfile.js
Last active January 1, 2016 17:18
Grunt and package.json files for (in this example) packaging a theme for release. This should get you started -- plenty of Gruntjs resources out there.
// This assumes you've already installed Node.js and any related dependencies.
// 1. Drop this and package.json into your theme root
// 2. Run: npm install
// 3. Run: grunt
// 4. ??????
// 5. Profit
module.exports = function ( grunt ) {
grunt.initConfig( {
@aaroneaton
aaroneaton / composer.json
Last active May 13, 2018 00:55
Include the WordPress unit tests as a Composer package
"repositories": [
{
"type" : "package",
"package": {
"name": "wordpress/unit-tests",
"version": "1.0",
"source" : {
"type": "svn",
"url": "http://unit-tests.svn.wordpress.org",
"reference": "trunk"
@sc0ttkclark
sc0ttkclark / gist:8661802
Created January 28, 2014 03:23
Give all admins access to pods_is_admin
<?php
function access_for_all_admins( $access ) {
if ( !$access && current_user_can( 'manage_options' ) ) {
$access = true;
}
return $access;
}
@spacedmonkey
spacedmonkey / gist:9688152
Last active April 22, 2024 15:25
Export to CSV - WP CLI
/**
* Export users to a CSV file.
*
* ## OPTIONS
*
* <file>
* : The CSV file to export users to.
*
* ## EXAMPLES
*
@dwood7399
dwood7399 / enqueue-scripts.php
Created March 22, 2014 19:39
Enqueue JS from dev files when WP_DEBUG is true, else enqueue combined, minimized file
//
// Enqueue JS from dev files or combined, minimized file
//
if( ! function_exists( 'bfc_enqueue_script' ) ) {
function bfc_enqueue_script()
{
if ( defined('WP_DEBUG') AND WP_DEBUG ) {
wp_enqueue_script('lazyload', get_stylesheet_directory_uri().'/js/dev/jquery.lazyload.js', array( 'jquery' ), null, true );
@soheilhy
soheilhy / nginxproxy.md
Last active March 25, 2025 14:55
How to proxy web apps using nginx?

Virtual Hosts on nginx (CSC309)

When hosting our web applications, we often have one public IP address (i.e., an IP address visible to the outside world) using which we want to host multiple web apps. For example, one may wants to host three different web apps respectively for example1.com, example2.com, and example1.com/images on the same machine using a single IP address.

How can we do that? Well, the good news is Internet browsers