Skip to content

Instantly share code, notes, and snippets.

<?php echo date("g:i a", strtotime("13:30")); ?>
<?php echo date("H:i", strtotime("1:30 PM")); ?>
<?php
if ( current_user_can('manage_options') ) {
echo "You're an admin!";
} else {
echo "Well you're just a muggle! I mean, non-admin!";
}
<?php
function namespace_check_admin() {
if ( current_user_can('manage_options') ) {
echo "You're an admin!";
} else {
echo "Well you're just a muggle! I mean, non-admin!";
}
}
add_action( 'plugins_loaded', 'namespace_check_admin' );
[id="pagelet_advertiser_panel"]
#id_of_the_menu_item {
display: none;
}
<?php
function my_shortcode() {
return a_function_to_display();
}
add_shortcode( 'shortcode_name', 'my_shortcode' );`
@bryceadams
bryceadams / gist:b6241eb35a7e06bd137a
Last active August 29, 2015 14:02
Captain Team [members] Shortcode Examples
[members]
<?php echo function cteam_member_display( $style, $size, $border_style, $columns, $color, $team, $show_count, $member_id, $show_bio, $show_quote, $show_phone, $show_email, $show_website, $show_location, $show_social, $show_skills ); ?>
<?php echo do_shortcode('[members]'); ?>