Этот плагин не тестировался с последними 3 основными выпусками WordPress. Скорее всего, он уже не поддерживается и может быть несовместим с текущими версиями WordPress.

Category Page Extender

Описание

This plugin builds on the Category Page plugin making it possible to automatically insert posts into pages and subpages based on categories. You must have a current version of Category Page installed in order to function.
.
Visit plugin page here

Usage

To view complete instructions read here

Open up page.php in your template folder (you may also set up a seperate a Page Template)

For the most basic setup, insert the following below the loop statement in the page.php file:

<?php if( function_exists(page2cat_pages)){ page2cat_pages($post->ID);} ?>

I recommend you wrap the function in your standard post class. For example:

<div class="post">
<?php if( function_exists(page2cat_pages)){ page2cat_pages($post->ID);} ?>
</div>

Plugin Options

<?php if( function_exists(page2cat_pages)){ page2cat_pages($post->ID, posts per page, number of pages);} ?><br /><br />

Posts per page: (default = 10) set to 0 to show all
This sets the number of posts to show at one time on the page.

Number of pages: (default = 15) set to 0 to show all
This tells how many page numbers to show at a time on the page navigation bar.

Example of Category Page Extender with variables:

<?php if( function_exists(page2cat_pages)){ page2cat_pages($post->ID, 5, 10);} ?>

This will list 5 posts and up to 10 page numbers at a time on the page navigation bar.

Plugin Homepage

Установка

***Requires a current installation of Category Page: https://wordpress.org/extend/plugins/page2cat/

  1. Download the plugin Zip archive.
  2. Upload Category Page Extender folder to your /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Setup some relationship between Categories and Pages using the Category Page plugin
  5. Tweak page.php in your theme folder (please read here to learn how).
  6. Enjoy!

Отзывы

Нет отзывов об этом плагине.

Участники и разработчики

«Category Page Extender» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

Перевести «Category Page Extender» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

1.0.3 — Fixed Firefox display error due to html comments in category-page-extender.php file

1.0.2 — Fixed page navigation

1.0.1 — Fixed header output error

1.0 — Original Release