comicpress-core/single.php

19 lines
504 B
PHP
Raw Normal View History

2009-11-08 03:00:14 +00:00
<?php
the_title(); echo '<br />';
2009-06-13 11:58:02 +00:00
2009-11-08 03:00:14 +00:00
Protect();
2009-07-12 23:31:47 +00:00
2009-11-08 03:00:14 +00:00
RT('first', 'from_post'); the_title(); echo '<br />';
RT('previous', 'from_post'); the_title(); echo '<br />';
RT('previous'); the_title(); echo '<br />';
Restore(); the_title(); echo '<br />';
RT('next', array('child_of' => 'amoc')); the_title(); echo '<br />';
2009-11-08 03:00:14 +00:00
RT('next', 'from_post'); the_title(); echo '<br />';
RT('last', 'from_post'); the_title(); echo '<br />';
2009-11-08 03:00:14 +00:00
Unprotect();
2009-07-29 02:38:20 +00:00
2009-11-08 03:00:14 +00:00
the_title(); echo '<br />';
2009-07-12 23:31:47 +00:00
2009-11-08 03:00:14 +00:00
finish_comicpress();
?>