이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

WP Job Manager – Custom Management Role

설명

Typically, only the user who posted a job can manage the applications. This plugin allows any user with the ‘edit_others_job_applications’ capability to manage applications.

Documentation

Documentation for the core plugin and add-ons can be found on the docs site here.

설치

Automatic installation

Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t even need to leave your web browser. To do an automatic install, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.

In the search field type “WP Job Manager – Customized Management Role” and click Search Plugins. Once you’ve found the plugin you can view details about it such as the the point release, rating and description. Most importantly of course, you can install it by clicking Install Now.

Manual installation

The manual installation method involves downloading the plugin and uploading it to your webserver via your favourite FTP application.

  • Download the plugin file to your computer and unzip it
  • Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation’s wp-content/plugins/ directory.
  • Activate the plugin from the Plugins menu within the WordPress admin.

Getting started

Once installed, grant your user(s) the edit_others_job_applications capability.

  1. Using the Members plugin, you can create a new role and click a checkbox to grant the capability.
  2. Or if you prefer to do it manually, add this code to your functions.php file:
    $user = new WP_User( $user_id );
    $user->add_cap( 'can_edit_posts' );

If you want to restrict your jobmanager user(s) from accessing other areas of the WordPress control panel, add this code to your functions.php file (it expects a role named “jobmanager”):
`
// tweak dashboard for job manager role
function remove_admin_menus() {
remove_menu_page( ‘index.php’ ); // Dashboard
remove_menu_page( ‘edit.php’ ); // Posts
remove_menu_page( ‘edit-comments.php’ ); // Comments
remove_menu_page( ‘tools.php’ ); // Tools
}
if ( appthemes_check_user_role( ‘jobmanager’ ) ) { add_action( ‘admin_menu’, ‘remove_admin_menus’ ); }

// hide jetpack admin menu item from non-admins
function remove_jetpack() {
    if( class_exists( 'Jetpack' ) && !current_user_can( 'manage_options' ) ) {
        remove_menu_page( 'jetpack' );
    }
}
add_action( 'admin_init', 'remove_jetpack' );

// get logged-in user's role
function appthemes_check_user_role( $role, $user_id = null ) {

    if ( is_numeric( $user_id ) )
    $user = get_userdata( $user_id );
    else
        $user = wp_get_current_user();

    if ( empty( $user ) )
    return false;

    return in_array( $role, (array) $user->roles );
}
`

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“WP Job Manager – Custom Management Role”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “WP Job Manager – Custom Management Role”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0.1

  • Update documentation

1.0

  • Basic plugin