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
-- generic email addresses and new passwords for users | |
UPDATE wp_users | |
SET user_email = CONCAT(user_login, '@example.com'), | |
user_pass = MD5(CONCAT(RAND(), CAST(ID AS CHAR), user_login)); | |
-- generic email addresses for commentors | |
UPDATE wp_comments | |
SET comment_author_email = CONCAT(CAST(comment_ID AS CHAR), '@example.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 | |
$WP_POST_STACK = array(); | |
function switch_to_post($post_id) { | |
global $WP_POST_STACK, $post; | |
if (!count($WP_POST_STACK)) { | |
$WP_POST_STACK[] = $post->ID; | |
} | |
$WP_POST_STACK[] = $post_id; |
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 | |
// include this near the top of your plugin file | |
$my_plugin_file = __FILE__; | |
if (isset($plugin)) { | |
$my_plugin_file = $plugin; | |
} | |
else if (isset($mu_plugin)) { |
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 | |
function akv3_query_format_standard($query) { | |
if (isset($query->query_vars['post_format']) && | |
$query->query_vars['post_format'] == 'post-format-standard') { | |
if (($post_formats = get_theme_support('post-formats')) && | |
is_array($post_formats[0]) && count($post_formats[0])) { | |
$terms = array(); | |
foreach ($post_formats[0] as $format) { | |
$terms[] = 'post-format-'.$format; |
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 | |
header('Content-type: text/plain'); | |
global $wpdb; | |
?> | |
<table class="numbers"> | |
<thead> | |
<tr> | |
<th> </th> |
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 | |
// relies on https://gist.github.com/1549613 | |
class WP_Widget_Recent_Posts_By_Format extends WP_Widget { | |
function __construct() { | |
$widget_ops = array('classname' => 'widget_recent_entries_by_format', 'description' => __( "The most recent posts on your site by format") ); | |
parent::__construct('recent-posts-by-format', __('Recent Posts by Format'), $widget_ops); | |
$this->alt_option_name = 'widget_recent_entries_by_format'; |
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 | |
// Cut off images at 300px high in excepts, show full image on hover | |
function akv3_image_excerpt_hover_js() { | |
?> | |
<script> | |
;jQuery(function($) { | |
$('.format-image.excerpt .entry-content').hover(function() { | |
if ($('body').width() < 768) { |
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 | |
// handy if you write status posts and send them to Twitter | |
function akv3_editor_char_count() { | |
?> | |
<script type="text/javascript"> | |
(function($) { | |
wpCharCount = function(txt) { | |
$('.char-count').html("" + txt.length); |
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
/* | |
Theme Name: FavePersonal Child | |
Theme URI: http://example.com/ | |
Description: Child theme for the FavePersonal Theme | |
Author: Your name here | |
Author URI: http://example.com/about/ | |
Template: favepersonal | |
Version: 1.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 | |
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); } | |
// ADD YOUR CODE HERE | |