How to Enable WPCodeBox Dark Mode in A...
Optimize your admin experience with WPCodeBox Dark Mode. Download this snippet to eas...

WPCodeBox
452
This MyListing code snippet exposes the otherwise private “job_listing” post type, enabling greater flexibility for your MyListing website. Use this snippet to target and display MyListing Job Listing post types with Elementor Pro’s powerful ‘Display Conditions’ feature, enhancing your site’s search engine optimization and user experience.
<?php
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
add_filter(
"elementor_pro/utils/get_public_post_types",
function ($post_types) {
$post_types["job_listing"] = "Job Listing";
return $post_types;
},
99
);





