Някой знае ли, дали може да се заредят повече от дефоултните 999 поста в Posts? Искам да задам bulk autions на всичките постове наведнъж (а те са бр. ххххх), но ми се страницират постовете и трябва много време да отделям за това. Примерно да се заредят 10000 items per page няма да е никак зле.
I'm wanting to find a way to have all pages listed without paging and to do so in a method that isn't going to be over-written when I update WordPress, i.e. in the form of a hook. The page is in the
wordpress.stackexchange.com
Код:
You can create a new page template, and in that template put:
<?php wp_list_pages( 'depth=-1' ); ?>
That will list all the pages with no indentation in alphabetical order.