Keybase proof
I hereby claim:
- I am bryansayler on github.
- I am bryansayler (https://keybase.io/bryansayler) on keybase.
- I have a public key ASCvs4wNf9zpXqcVW8EsJZLKBB9id5uOZaqBX9rktGqR5go
To claim this, I am signing this object:
<?php | |
/* | |
* PMPro RSS Extra Feeds Example | |
* | |
* Extra feeds format: | |
* $feeds["Label"] = Feed URL | |
* | |
* learn more about feed URLs at http://codex.wordpress.org/WordPress_Feeds | |
*/ |
<?php | |
/** | |
* Make sure to add the wpe-login parameter to the lostpassword URL. | |
*/ | |
function my_fix_wpelogin( $url ) { | |
$url = add_query_arg( 'wpe-login', true, $url ); | |
return $url; | |
} | |
add_filter( 'lostpassword_url', 'my_fix_wpelogin' ); |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* This template will display a list of events - copy it to your theme folder | |
* | |
* @ package Event Espresso | |
* @ author Seth Shoultes | |
* @ copyright (c) 2008-2013 Event Espresso All Rights Reserved. | |
* @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * | |
* @ link http://www.eventespresso.com | |
* @ version 4+ |
<?php | |
function ww_rss_post_thumbnail($content) { | |
global $post; | |
if(has_post_thumbnail($post->ID)) { | |
$content = get_the_post_thumbnail($post->ID) . $content; | |
} | |
return $content; | |
} | |
add_filter('the_excerpt_rss', 'ww_rss_post_thumbnail'); |
<?php | |
function ww_current_year_shortcode() { | |
$current_year = date('Y'); | |
return $current_year; | |
} | |
add_shortcode('current-year', 'ww_current_year_shortcode'); |