Add arguments to a custom template
-
Hello, I would like to add an “offset” and display only “post type”, and makes 5 posts appears instead of 3.
is it possible to custom the following template to make it runs ?
<?php if (have_posts()) { $output .= '<ul class="icon-list ">'; while (have_posts()) { the_post(); $output .= '<li style="margin-left:30px;"><div class="icon16 iconSymbol heart"></div><a href="'.get_permalink().'" rel="bookmark">'.get_the_title().'</a>'; // $output .= ' ('.round(get_the_score(),3).')'; $output .= '</li>'; } $output .= '</ul>'; } else { $output .= '<p><em>'.__('No related posts.','yarpp').'</em></p>'; }
https://www.ads-software.com/extend/plugins/yet-another-related-posts-plugin/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add arguments to a custom template’ is closed to new replies.