Redirect to custom login page

You can redirect requests to wp-login.php to your page: add_action( ‘login_head’, function() { $parsed = parse_url($_SERVER[‘REQUEST_URI’]); $redirect = site_url(‘mypage’); if (!empty($parsed[‘query’])) { $redirect .= ‘?’.$parsed[‘query’]; } wp_safe_redirect($redirect,301); exit; } ); However, wp-login.php appears ~34 times in Core on my 3.6.1 install ( grep -Rn “wp-login.php” * | wc -l ), and many of those do … Read more

How can i create a tag with the template’s name like below, and what is the purpose of using them? [duplicate]

The code you posted is broken but what you are looking at– that “twentythirteen”– is a “text domain” which is used for theme translation. The text domain is a kind of “Key” for locating the right translation data. That is, the first part, ‘Edit’ for example, will be translated based on the “twentythirteen” translation strings. … Read more