Hi @charismeki,
Thank you for your reply. Good thought! I already had everything in “Settings” (free version) at ul. And there is no section for making changes to the widget. However, your suggestion lead me to “edit” the YARPP plugin, see below, from ol to ul and it did remove the numbered list, which is great, but it would not display the list as bulleted. ??? This is much better than a numbered list though.
Thanks again, Brad
Editing yet-another-related-posts-plugin/includes/template_widget.php
<?php
if (have_posts()) {
$output .= '<ul>';
while (have_posts()) {
the_post();
$output .= '<li><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>';
}
-
This reply was modified 7 years, 8 months ago by BX12.