Hàm lấy danh sách post type theo tên post_type
<?php
$args = array(
'numberposts' => 0,
'post_type' => 'country-origin'
);
$result = get_posts($args);...