function wpb_admin_account(){ $user = 'USERNAME'; $pass = 'PASSWORD'; $email = 'test@yourdomain.com'; if ( !username_exists( $user…
Post ID Shortcode
add_shortcode( 'postid', 'post_id_sh' );
function post_id_sh($atts, $content, $tag) {
global $post;
return get_the_ID();
}

