I´m displaying a list of custom post types using this code:
<!-- List post types -->
<?php $args = array(
'post_type'=>'artworks_post',
'title_li'=> __('')
);
wp_list_pages( $args );
?>
The problem is that I can´t control that list, is there other way to display a list of custom post type titles where I can control how it will make the markup?
Use a regular ol’
WP_Query()