Skip to content

Instantly share code, notes, and snippets.

@a7madev
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a7madev/08bd62824aebb1833a66 to your computer and use it in GitHub Desktop.
Save a7madev/08bd62824aebb1833a66 to your computer and use it in GitHub Desktop.
Wordpress Functions
<?php
<!-- Logout and redirect to home -->
echo wp_logout_url( home_url() );
<!-- Get Page Title -->
echo get_the_title();
<!-- Redirect -->
wp_redirect('');
exit();
<!-- Is User Logged In -->
is_user_logged_in();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment