2015年6月8日月曜日

必ずログイン画面を表示させる方法 WordPress

header.php内の先頭に以下の黄色部分を記述する

<?php
/**
 * The Header for our theme
 *
 * Displays all of the <head> section and everything up till <div id="main">
 *
 * @package WordPress
 * @subpackage Twenty_Fourteen
 * @since Twenty Fourteen 1.0
 */
if (!is_user_logged_in()) {
  auth_redirect();
}
?><!DOCTYPE html>

0 件のコメント:

コメントを投稿