Здравствуйте! Создал ссылки через post type, но совершенно не понимаю, как вывести их на страницу
Вот код функции:
<?php
function create_filials() {
register_post_type( 'filials',
array(
'labels' => array(
'name' => 'Филиалы',
'singular_name' => 'Филиалы',
'add_new' => 'Добавить новый',
'add_new_item' => 'Добавить филиал',
'edit' => 'Edit',
'edit_item' => 'Edit Филиал',
'new_item' => 'New Филиал',
'view' => 'View',
'view_item' => 'View Филиал',
'search_items' => 'Search Филиал',
'not_found' => 'No Филиал Found',
'not_found_in_trash' => 'No Филиал found in Trash',
'parent' => 'Parent Филиал'
),
'public' => true,
'menu_position' => 3,
'has_archive' => true
)
);
}
add_action( 'init', 'create_filials' );
?>