View send-print_r-to-firebug-console.php
<?php | |
function debug ($data) { | |
echo "<script>\r\n//<![CDATA[\r\nif(!console){var console={log:function(){}}}"; | |
$output = explode("\n", print_r($data, true)); | |
foreach ($output as $line) { | |
if (trim($line)) { | |
$line = addslashes($line); | |
echo "console.log(\"{$line}\");"; | |
} |
View wp-customize-uinstall.php
<?php | |
!defined( 'ABSPATH' ) AND exit; | |
/* | |
Plugin Name: Custom Installation Script | |
Plugin URI: http://wordpress.stackexchange.com/q/75420/12615 | |
Description: Create our own content on WP install | |
License: GPL |
View init.js
var foo = new Array(10);//create an empty array with length 45 | |
var a = []; | |
for(var i=0;i<foo.length;i++){ | |
// document.write('Item: ' + (i+1) + ' of ' + foo.length + '<br/>'); | |
var file = 'string' + i +'.jpg'; | |
foo.push(file); | |
} | |
function Array() { |