to change the number of posts per page you can do it in the wp dashboard
like in this picture
This function on functions.php works for me
function tcPostsPerPage( $query ) {
if (is_home()){$query->set('posts_per_page', 6);}
if (is_archive()){$query->set('posts_per_page', 6);}
}
add_action( 'pre_get_posts', 'tcPostsPerPage' );
the two 6 is limiting to 6 per page, if this doest work for you, its a question of changing the is_archive() to something like is_page(‘yourpage’)
also if it works you can remove the ‘posts_per_page’ of your array, and the variable attached.
Related Posts:
- Order get_terms using a Custom Field
- Display Custom Taxonomy Terns ordered by meta_value
- Listing child terms of parent term
- Ordering Posts with Custom Taxonomy Terms Array
- Sort order by slug for looped child terms of custom taxonomy
- Weekdays as terms – How to order taxonomy terms by ID in admin panel?
- How can I change the output display of my pagination?
- How to add a date creation field when a custom taxonomy relationship is created?
- Order taxonomy terms wordpress
- add pagination in wordpress page template
- Orderby taxonomy term id using get_posts not working
- Sorting terms individually for each post
- Tax query array terms display out of order
- Order posts with custom taxonomy array
- get_posts assigned to a specific custom taxonomy term, and not the term’s children
- How can I get only parent terms?
- Retrieve posts by term id custom query
- Change order of Custom Taxonomy List
- Get the the top-level parent of a custom taxonomy term
- get_the_term_list without links in 3.1
- Inserting terms in an Hierarchical Taxonomy
- get_terms – only top level
- How to only list the child terms of a taxonomy and not their parents?
- Hierarchical taxonomy UI
- How to prevent new terms being added to a custom taxonomy?
- Custom Taxonomy Endpoint Pagination using paginate_links()
- get_term_children for immediate children only (not grandchildren)
- Query users by custom taxonomy and user role
- Determine Term depth
- How to get current term in my custom taxonomy in WordPress?
- Is there a way to ‘Lock’ a Taxonomy?
- Order get_terms() By Custom Field
- Hide the term description on the term edit page, for a given taxonomy
- Order terms by term_order
- get_term_by not working when in functions.php
- Creating a non-removable taxonomy term
- Custom Taxonomy not working with posts_per_page in new WP_query (pagination problem)
- Get value in custom field with taxonomy [closed]
- Get second level terms of custom taxonomy
- Can I lock down custom taxonomies on a parent term level, but not a child term?
- get_query_var(‘paged’) always returns empty
- Get only the first term by taxonomy
- Exclude specific slug in ‘get_terms’
- Large taxonomy (2000+ terms), causing WordPress to hang
- Custom order of terms for custom taxonomy in admin and website
- Is there a way to disable a term rather than deleting it?
- Modify Term Update Redirection
- Best pratice to make taxonomy terms translatable without changing slugs?
- Front End Post Save Child terms
- Return only the custom sub-term for custom post type, do not echo term-parent
- wp_insert_term is adding a term that has no name
- Taxonomy slug by term ID
- Check if current term is a child of another term
- Is there a way to import terms into WordPress?
- get_terms() doesn’t return empty terms even though hide_empty is false
- Get terms from multiple taxonomies
- Get taxonomy name of current post
- Formating the_terms() function output
- get_terms() returns an empty array
- wp_insert_term auto unique name
- get_terms showing link to category even if all posts are drafts
- Determine if Term has Grandparent/Great-Grandparent
- Custom Taxonomy Only Showing Top Level Terms in Admin?
- Dropdown: Display terms from B only if has relationship with a term A selected
- How can I set a default listing order on the admin page for a custom taxonomy? (without plugins)
- Non-hierarchical custom taxonomy using checkboxes on edit-screen -> saving issue
- Retrieving custom taxonomy in order, but excluding specific tax IDs
- wp_get_object_terms – How can I order the resulting array by hierarchy?
- Get main parent categories for a product
- Get current term’s ID
- Is it possible to get a Previous/Next Taxonomy term archive URL?
- How to pass posts_per_page and paged params query vars to custom taxonomy archive urls?
- Showing posts by collection of specific terms and texonomy
- get taxonomy terms for parent and child
- Taxonomy query for children of parents
- show term description instead of list terms of custom taxonomy
- WP_insert_term how to insert multiple values as taxonomny term?
- Looping Through Custom Tax Terms and Displaying All Posts For Each
- Group posts that matches a term in a loop
- term_link() filter or rewrite and howto?
- How to get the top most term (top ancestor) of a custom taxonomy child term?
- Custom WP_Query breaks default behaviour of viewing right post associated with tax-term!
- Separator for multiple terms
- Contact Form 7 – Populating dropdown list with terms relative to the post
- List taxonomy terms plus their latest post ordered by post date
- How to set hierarchical terms to a post using wp_set_object_terms
- Echo taxonomy term meta on author.php
- get_the_term_list without specific category
- Hierarchical display of custom taxonomy
- Display the taxonomy name of the current term
- Custom taxonomy term as class?
- How to edit/remove a term that’s in multiple taxonomies?
- How to create a theme template for the taxonomy “root”
- Taxonomy page lead to 404 page on pagination
- How to display term description in empty terms archive?
- Advanced custom fields – taxonomy terms images [closed]
- Checking if a Page has an Associated Term?
- Custom taxonomy term in WooCommerce product permalink
- What are terms and taxonomy, how they related to post and how these three are stored in database?
- Get multiple term objects by ids