Create you own WP_query running on this post type out side the main loop.
$args = array('post_type' => 'cpt_name');
$cptq = new WP_query($args);
if($cptq->have_posts()):
while($cptq->have_posts()):$cptq->the_post();
the_title();
endwhile;
wp_reset_query();
endif;
Related Posts:
- 2 Different Custom Post Types in Submenu
- Placing a Custom Post Type Menu Above the Posts Menu Using menu_position?
- Get the ID of the latest post
- Change permalinks for posts but not for custom post types
- Front end post editing using a form
- Put update-like notification bubble on multiple CPTs menus for pending items
- Set posts of a custom post type to be private by default?
- Can I have Post Types under other Post Types in Admin menu?
- How make get_next_post() return first post when viewing last one
- post_row_actions for custom post type
- modify all posts of a category to “no comments allowed”
- Getting a div content of a post in wordpress?
- How can I add dropdown widget/box to admin post page?
- Custom permalinks – post type – hierarchical taxonomy’s
- How to show related posts by category or custom post type?
- Downsides to not using built-in “Posts” post type?
- How do I code access to the built-in UI of a CPT when it’s placed as submenu of another CPT that is protected by role?
- ascending order custom post type
- add_meta_box: Datepicker like the one for postdate?
- [Plugin: Posts 2 Posts] Changing display order of connections
- Display taxonomy term only if there’s a value
- get_page_by_title() not returning anything [closed]
- How to show post title outside of loop? [closed]
- How do you use JavaScript to detect the homepage
- How to delete all posts from a custom post type?
- How to add new tab to admin list of posts and handle result list
- Displaying different custom post types under one admin menu
- Update content of multiple pages/posts at once?
- Display types of posts in edit.php instead of All, Published, Scheduled and Draft
- CPT’s archive and single page not working [closed]
- How to post twitter like updates on wordpress
- Trying to edit the single page from a Custom Post
- How to Submit Post Via cURL & PHP
- apply filters only to specific post listing without check the url parameters
- WordPress Orderby Numeric Value Not Working
- is there a way to retrieve posts that do not have a featured image assigned?
- Notice: Undefined index: suppress_filters
- Move custom post menu to under plugin admin menu
- Storing posts from query and accessing later via AJAX call
- If post has custom field then display css-class
- How can i add thumbnails images to particular post (using code not admin pannel) in wordpress
- Post image in WordPress not appearing on home page
- Able to edit custom post, but unable to create new custom post when within submenu. What capability is missing?
- custom post type category count shortcode
- Add post location with mile radius allowing search
- How to sort posts in a custom post type by title in ascending order by default?
- Conditional for a Single Post That Belongs to a Category?
- $post not working working in AJAX plugin with custom post type
- Create new custom post and post category of same name
- Multiple pages per post (not pagination)
- Variable not working in WP_Query
- What’s an efficient way to change the post status of many posts at once?
- Query within a foreach within a query (queryception)
- How to implement a different permalink structure for custom post type?
- Getting post attchment URL to populate a CPT Admin Page Column
- WordPress notification if new post published
- How to handle new post from API request?
- Restrict category access to specific users/groups. Author always has access
- Modify Posts from Custom_Post_Type within the plugin
- Render a Post or Page using the correct file
- WordPress Count posts within a custom post type
- Copy/Move selected taxonomy terms to another taxonomy for posts
- WordPress post carousel
- Custom post type tags not showing in search
- How to setup different permlalinks for posts and pages?
- list articles in admin showing nested categories or slugs?
- Define multiple prefixes for custom post type
- Show posts from WP Custom Post Type selected from a field in a metabox
- wp_post_delete is deleting all offices
- order custom post type posts by custom date
- Why doesn’t wp_delete_post allow trashing for custom types?
- Need to display author’s email id in the “Edit post” field in wp dashboard. How do I do this?
- post type => ‘any’ not applied my custom queries
- Using Orderby and meta_value to order natural/alphanumerical
- How to get all posts related to a taxonomy?
- call a function when insert and update a custom post type
- Work and Display a Custom Post Type as a normal Post
- Most efficient way of showing children posts?
- Limit or filter edit view in the dashboard to a specific ID only?
- Custom post type with two templates
- One Post with different content, depending on a Page
- Custom Post Type
- Why isn’t my custom post type using the corresponding custom post template?
- Popup panel is only displaying 1 entry ignoring all others
- Custom Post Status & Taxonomies
- How to display data with pagaination on backend?
- Edit post meta direct from post.php?
- How to Arrange Support => Thumbnail
- Limit number of posts under a post type?
- Front-end form submission not creating post
- Linking custom taxonomies and posts
- Post being scheduled that shouldnt be schedulded
- Post type cloud like tag cloud?
- Add top-level menu pointing to a different custom post type?
- Change permalinks for posts but not custom post type?
- Get custom post type parent category
- How to delete unnecessary custom post types in the UI
- show the most recent date of all posts to display on front end
- Error 403 when posting comments to a custom post type from a different page
- Two pagination in one page without AJAX