With this plugin a user can easily bind pages to a page.
This plugin is deprecated so Pronamic wil no longer support and maintain this plugin.
If you want to help maintain the plugin, fork it on GitHub and open pull requests.
This plugin makes it easy to bind pages (teasers) to a page.
Contributors: pronamic, remcotolsma
Donate link:
Tags: pronamic, page, pages, pages on page, teasers on page, teasers, teaser, related pages
Requires at least: 3.0
Tested up to: 3.0
Stable tag: 1.1
With this plugin a user can easily bind pages to a page. This way a developer can easily show teasers of pages on a page. Editors can easily define the page teasers on the page editor screen.
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
The teasers will automatically be added to the_content() using the_content() filter. If you want to change the markup of the teasers, you should create a “pronamic-page-teasers.php” file within your theme directory.
pronamic-page-teasers.php
<?php
$teasers = pronamic_get_page_teasers();
$h = is_front_page() ? 3 : 2;
if($teasers): ?>
<ul>
<?php foreach($teasers as $post): setup_postdata($post); ?>
<li>
<article id="teaser-<?php the_ID(); ?>" <?php post_class('teaser'); ?>>
<h<?php echo $h; ?>>
<a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr__('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h<?php echo $h; ?>>
<?php the_excerpt(); ?>
</article>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
is_pronamic_page_teasers()
Returns true if the loop is rendering Pronamic page teasers.
pronamic_page_teasers_the_content()
Extends the_content() with the Pronamic page teasers. Can be disabled by removing the filter:
remove_filter('the_content', 'pronamic_page_teasers_the_content');
pronamic_get_page_teasers()
This functions can be used to get an array of all the teaser pages that are defined for the current global page. This function must be within The Loop. This function is based on the get_pages() function.
pronamic_page_teasers()
This functions renders the Pronamic page teasers. It is normally used within the pronamic_page_teasers_the_content() function. If you don’t want to display the teasers right after the_content(), you can disable the pronamic_page_teasers_the_content() filter. You can then manually add the function pronamic_page_teasers() to one of your template files.