I hereby claim:
- I am bpmore on github.
- I am bpmore (https://keybase.io/bpmore) on keybase.
- I have a public key whose fingerprint is 416A D313 079B 83C9 253B 9D12 0CFA 44B8 E912 CD0E
To claim this, I am signing this object:
Verifying that +bpmore is my blockchain ID. https://onename.com/bpmore |
//Found here: https://wordpress.org/support/topic/how-to-rename-the-admin-sub-menu-name-of-a-custom-post-category-or-tag | |
function wptutsplus_change_post_menu_label() { | |
global $menu; | |
global $submenu; | |
echo "<pre>"; | |
print_r($menu); | |
print_r($submenu); | |
echo "</pre>"; | |
} | |
add_action( 'admin_menu', 'wptutsplus_change_post_menu_label' ); |
<?php if(function_exists('fetch_feed')) { | |
include_once(ABSPATH . WPINC . '/feed.php'); // include the required file | |
$feed = fetch_feed('http://69.65.177.39/webcache/v1.0/rssDays/7/list-rss/no--filter.rss'); // specify the source feed | |
$limit = $feed->get_item_quantity(4); // specify number of items | |
$items = $feed->get_items(0, $limit); // create an array of items | |
$items = array_reverse($items); // display the sort correctly | |
$feed->set_cache_duration (43200); // cache the feed 43200=12 hours |
I hereby claim:
To claim this, I am signing this object:
add_action( 'genesis_entry_content', 'os_show_featured_image_single_posts', 9 ); | |
function os_show_featured_image_single_posts() { | |
global $post; | |
if ( ! is_singular( 'post' ) ) { | |
return; | |
} | |
// Get the featured image HTML |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/* | |
Plugin Name: Get Page Id and Site URL | |
Description: Get the page id for SiteImprove Deep Linking | |
Version: 1 | |
Author: Mark Heffington | |
Author URI: http://www.uca.edu/ | |
*/ | |
/* | |
Inside mu-plugins |