Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other WordPress Custom Post Type Problemo!

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #45466

    Hi there. Could someone check to see if my custom post type has been created properly. This is my first attempt using [a tutorial from wp.tutes](http://wp.tutsplus.com/tutorials/plugins/a-guide-to-wordpress-custom-post-types-creation-display-and-meta-boxes/ “Original Tutorial”)

    This is my custom post type code;

    /*
    Plugin Name: Jobs
    Description: Plugin for Inside Biz Ed
    Version: 1.0
    Author: Alex Johnson
    Author URI: http://webfeetdesign.com/
    */

    add_action( ‘init’, ‘create_job’ );

    function create_job() {
    register_post_type( ‘job_post’,
    array(
    ‘labels’ => array(
    ‘name’ => ‘Job Posts’,
    ‘singular_name’ => ‘Job Post’,
    ‘add_new’ => ‘Add New’,
    ‘add_new_item’ => ‘Add New Job Post’,
    ‘edit’ => ‘Edit’,
    ‘edit_item’ => ‘Edit Job Post’,
    ‘new_item’ => ‘New Job Post’,
    ‘view’ => ‘View’,
    ‘view_item’ => ‘View Job Post’,
    ‘search_items’ => ‘Search Job Posts’,
    ‘not_found’ => ‘No Job Posts found’,
    ‘not_found_in_trash’ => ‘No Job Posts found in Trash’,
    ‘parent’ => ‘Parent Job Post’
    ),

    ‘public’ => true,
    ‘menu_position’ => 15,
    ‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’ ),
    ‘taxonomies’ => array( ” ),
    ‘menu_icon’ => plugins_url( ‘images/jobs-icon.png’, __FILE__ ),
    ‘has_archive’ => true
    )
    );
    }

    add_action( ‘admin_init’, ‘my_admin’ );

    function my_admin() {
    add_meta_box( ‘job_post_meta_box’,
    ‘Job Post Details’,
    ‘display_job_post_meta_box’,
    ‘job_post’, ‘normal’, ‘high’
    );
    }

    function display_job_post_meta_box( $job ) {
    // Retrieve current name of the employer based on job ID
    $job_employer = esc_html( get_post_meta( $job->ID, ‘job_employer’, true ) );
    // Retrieve current name of the location based on job ID
    $job_location = esc_html( get_post_meta( $job->ID, ‘job_location’, true ) );
    // Retrieve current name of the position based on job ID
    $job_position = esc_html( get_post_meta( $job->ID, ‘job_position’, true ) );
    // Retrieve current name of the salary based on job ID
    $job_salary = esc_html( get_post_meta( $job->ID, ‘job_salary’, true ) );
    // Retrieve current name of the end date based on job ID
    $job_end = esc_html( get_post_meta( $job->ID, ‘job_end’, true ) );
    ?>

    Job Employer Job Location Contract Job Salary Expiry Date http://insidebized.com/jobs/

    I really hope someone can help me here as its dragged on for weeks now.

    Many thanks

    #138438
    Alen
    Participant
    Viewing 2 posts - 1 through 2 (of 2 total)
    • The forum ‘Other’ is closed to new topics and replies.