function ptt_debug_shortcode() {
if (!current_user_can(‘manage_options’)) return ”;
$html = ‘
$q = new WP_Query([
‘post_type’ => ‘rtcl_listing’,
‘post_status’ => ‘publish’,
‘posts_per_page’ => 1
]);
if ($q->have_posts()) {
$q->the_post();
$id = get_the_ID();
$html .= ‘RTCL SPECIFIC META KEYS ONLY:
‘;
$meta = get_post_meta($id);
ksort($meta);
foreach ($meta as $k => $v) {
// Sirf rtcl_ keys dikhao
if (strpos($k, ‘_rtcl’) !== false || $k === ‘_featured’ || $k === ‘_top’) {
$val = is_array($v) ? $v[0] : $v;
// Serialized values skip karo
if (strlen($val) < 100) {
$html .= ' ‘ . esc_html($k) . ‘ = ‘ . esc_html($val) . ‘
‘;
}
}
}
wp_reset_postdata();
}
$html .= ‘
‘;
return $html;
}
add_shortcode(‘ptt_debug’, ‘ptt_debug_shortcode’);