S
S
Sergey2021-08-13 23:54:55
WordPress
Sergey, 2021-08-13 23:54:55

How to remove the dependence on the display of records, which is indicated in the admin panel?

I have a custom wp_query, for example:

$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
$query_custom = new WP_Query( [ 'posts_per_page' => 9,  'paged' => $paged] );


And it is necessary that my posts do not depend on this:
6116dbeb147a3112228437.jpeg

Otherwise, because of this, I get 404 pagination pages

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem Zolin, 2021-08-14
@artzolin

404 is not your reason, this option does not affect custom WP_Query() queries. Most likely you are not displaying pagination on the page correctly. Attach the whole code or follow this guide

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question