How to Set WooCommerce Default User Re...
Learn how to set the default user registration role in WooCommerce with this simple c...

WPCodeBox
407

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
);





