loker bumn ayeuna

hanya test

<?php

function display_custom_fields() {
    ob_start(); // Untuk output buffering

    // Ambil nilai custom fields
    $job_title = rwmb_meta('job_title');
    $hiring_organization = rwmb_meta('hiring_organization');
    $job_location = rwmb_meta('job_location');

    // Tampilkan nilai custom fields
    if ($job_title) {
        echo '<h2>' . esc_html($job_title) . '</h2>';
    }

    if ($hiring_organization) {
        echo '<p>Hiring Organization: ' . esc_html($hiring_organization) . '</p>';
    }

    if ($job_location) {
        echo '<p>Location: ' . esc_html($job_location) . '</p>';
    }

    return ob_get_clean(); // Mengembalikan output
}
add_shortcode('display_job_fields', 'display_custom_fields');
[show_job_fields]

Check Also

Loker BUMN 2024

Leave a Reply

Your email address will not be published. Required fields are marked *