The Genesis Framework is not for free, so I can’t inspect the code. But I can use Google or any other search engine and found something with custom post types. And as I see the comment // any wp_query() args
, I guess you can pass the same arguemnts to the Genesis loop as to the normal wp_query (especially the part with ‘Multiple Posts/Pages Handling’).
function custom_do_cat_loop() {
global $query_args; // any wp_query() args
$per_page = 10;
$args= array(
'post_type' => 'post',
'posts_per_page' => $per_page,
'paged' => get_query_var( 'paged' )
);
genesis_custom_loop( wp_parse_args( $query_args, $args ) );
}
This solution is a shot in the dark, but maybe it help you to find more informations on the web.
Related Posts:
- How to Display Post View Count
- Converting a dynamic piece of code using WordPress Loop into a static one using Post ID
- Exclude category from
- Change all author links in Blog roll
- The_excerpt() doesn’t parse – how to change that?
- How to only publish posts with image in it
- Add custom text automatically on each post
- Optimize CPT-function with a loop
- Get post id outside loop : Notice: Trying to get property of non-object
- Show post excerpt
- Show author bio box
- display last post modified date in genesis child themes
- What function does the loop of displaying posts?
- Query *only* sticky posts
- List only child categories a post is in, of a specific parent category
- Can’t show comments count per post outside loop
- How to change post status from publish to draft using hook in wordpress?
- Show a list of recently viewed posts to a user
- Alternate custom content in the loop
- Allow role to delete posts but block him the wp-admin
- Why does `url_to_postid` return 0 when testing `page_for_posts` Page?
- WP_Query in functions.php overrides global $post object, even with wp_reset_query()
- Auto Refresh Post List after X seconds
- Display posts with comments closed, with pagination?
- Related posts loop based on tags AND categories doesn’t work without at least one tag assigned
- Action hook for new pending posts?
- Ajax posts filter by date, comments, top views, top likes
- Prepend or add an Image to the content of a Post
- How To Get Posts With A Specific Word
- Why WP_Query(‘showposts=5’) shows only 1 post?
- WordPress Loop – Next 3 Posts
- Blog page pagination is not working after using the offset argument
- WP Query – Posts Per Page not working in combination with category__in
- More then one menu items are assigned with “current-menu-item” class
- How to do set post permalinks using 6 digit random unique function?
- Pulling in post category and children within category
- Shortcode not working with post counter
- Display post x of y within category
- WordPress Automatic Filename Changer
- How to add tags (custom taxonomy) to post class css?
- Listing Specific Categories from Current Post with Depth
- How to exclude visited posts from loop
- get_the_category listing in hierarchial order
- add to end of post in the loop with plugin
- Adding bootstrap classes to video shortcodes
- Loop don’t work within single.php page
- Getting blog pagination to work on page set as front page
- Display current post position in Elementor Posts widget
- Genesis Framework: How to exclude a specific author from archive custom loop
- Un-highlight Blog Menu Item when Category Menu Item is Selected
- Is it advisable to use $post->comment_count instead of get_comments_number( $post_id )
- Not all posts showing in query
- Related Posts: Changing Function For Posts Per Page
- Some doubts about how the loop work (trying debugging it)
- If custom field is empty, use one from a previous post
- Same post appears in related Posts?
- Get post category as a separate string and url
- Display 3 posts with different HTML markup using a loop
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- I can’t find the relevant part of the loop in my theme file. How do I find the full content with “More…”
- How to show full post on home page
- Is there a way to define the $post var outside the loop?
- Set Default Post as Parent Child (Nested) Relation
- ACF flexible content block not showing on live site (works locally)
- Only the most recent post is showing on my category page (working on localhost, not live site)
- how to show comments only author which send own posts in wordpress
- get category in list of posts // shortcode for custom related posts
- Alt text attributes not showing over portfolio images
- How to show post views shortcode data for each post on Posts List Page?
- Need to display a Jan 1st post as the site’s front page on Jan 1st, and Jan 2nd post as front page on Jan 2nd etc
- Set a post expiration and delete a post when expirate
- subtracting the current post form then whole loop, which is generating all CPT titles
- Excluding tag Link from html tags in Post content
- Changing a users posts to drafts upon role change
- How to show category image if no featured image is set?
- Retrieve posts inside foundation tabs and tab-content split by 3 per row
- Post being duplicated with foreach loop
- Alternative content between posts no repetition
- Start loop from specific post ID
- Display new posts categories in separated divs
- Custom post type – Loop out in random order but same 15 to appear first… still random
- WordPress infinite post cycle
- im trying make a function to auto correct posts when i open the posts in the backoffice
- WordPress Request Post All Post ID in a Loop? [closed]
- Add row after three columns
- Post Format problem
- Show only top 3 posts from 3 categories in order on home page
- index.php is only displaying current month’s posts?
- Grab next post title in archive page
- How to get posts from network blog
- Getting posts from multiple users?
- Adding a category at even positions on main loop with modified pagination
- How do we display a certain category type on a page while hiding all others?
- Show all posts in category
- First post in loop displays twice
- Wrap every 2 posts
- Show Next/Previous without Link
- View post with specific category id and name which I selected in the backend (drop-down option)
- Filters do not work when there are multiple (one works)
- WordPress Ajax load doesn’t work