This file contains 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
WP_Query Object | |
( | |
[query_vars] => Array | |
( | |
[post_type] => any | |
[posts_per_page] => 5 | |
[s] => test | |
[error] => | |
[m] => 0 | |
[p] => 0 |
This file contains 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 get_header(); ?> | |
<div id="content"> | |
<div class="main-top"> | |
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> | |
<article id="page-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<h1><?php the_title(); ?></h1> | |
<div class="entry-content"> | |
This file contains 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
var max1 = 85; | |
var max2 = 61; | |
var max3 = 94; | |
var max4 = 52; | |
index1 = Math.round(Math.random() * max1); | |
index2 = Math.round(Math.random() * max2); | |
index3 = Math.round(Math.random() * max3); | |
index4 = Math.round(Math.random() * max4); |
This file contains 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
# How to upload local db to meteor: | |
# -h = host, -d = database name, -o = dump folder name | |
mongodump -h 127.0.0.1:3002 -d meteor -o meteor | |
# get meteor db url, username, and password | |
meteor mongo --url myapp.meteor.com | |
# Response will be something like this: | |
# mongodb://client:[email protected]:27017/myapp_meteor_com |
This file contains 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 | |
/** | |
* Remove date ranges from post titles | |
* | |
* @author ericpedia | |
* @since 2014-08-26 | |
* | |
*/ |
This file contains 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
(function($) { | |
$.fn.changeElementType = function(newType) { | |
return this.each(function() { | |
var attrs = {}; | |
$.each(this.attributes, function(idx, attr) { | |
attrs[attr.nodeName] = attr.nodeValue; | |
}); | |
$(this).replaceWith(function() { |
OlderNewer