Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 27, 2016 11:17
Show Gist options
  • Select an option

  • Save Restoration/54e9735887497c9b5ddc187fb920bb39 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/54e9735887497c9b5ddc187fb920bb39 to your computer and use it in GitHub Desktop.
WordPressユーザー権限ごとに処理を変更する

#WordPressユーザー権限ごとに処理を変更する

  • 管理者 : administrator
  • 編集 : editor
  • 投稿者 : author
  • 寄稿者 : contributor
  • 購読者 : subscriber

##特定の権限ユーザーに適用する

<?php
if (current_user_can('administrator')) {
    // ここに処理
    // 管理者のみに実行 
}

##特定のユーザーに適用する

<?php
global $current_user;
get_currentuserinfo();
if ($current_user->ID == "1" ) {
    // ここに処理
    // IDが1のものにだけ実行する
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment