Antes de hacer algo respalda el archivo comments.php y funtions.php.
Ahora busca estas lineas en el archivo comments.php
Código PHP:
<?php if ( ! empty($comments_by_type['pings']) ) : ?>
<div id="trackbacks-list" class="comments">
<h3>Hay <?php printf($ping_count > 1 ? __('<span>%d</span> Trackbacks', 'intertextual') : __('<span>un</span> Trackback', 'intertextual'), $ping_count) ?></h3>
<ol>
<?php wp_list_comments('type=pings&callback=intertextual_pings'); ?>
</ol>
</div><!-- end div#trackbacks-list.comments -->
<?php endif;?>
y sustituye por esto
Código PHP:
<?php if ( ! empty($comments_by_type['pings']) ) : ?>
<div id="trackbacks-list" class="comments">
<h4 id="pings">
<?php _e('Trackbacks', 'default'); ?>
/<br/>
<?php _e('Pingbacks', 'default'); ?>
</h4>
<ol class="pinglist">
<?php wp_list_comments('type=pings&callback=list_pings'); ?>
</ol>
</div>
<?php endif; ?>
Entra en el archivo funtions.php y agregas esta funcion
Código PHP:
function list_pings($comment, $args, $depth) {
$GLOBALS['comment'] = $comment;
echo "<li id=\"comment-";
echo comment_ID();
echo "\" class=\"pings\">";
echo comment_author_link();
}
Me dices si resulta, no lo puedo probar aquí.
P.D: Tal ves aparece sin estilo porque no esta definido un estilo para los ol de tus pings
Tu lo tienes así<ol>
Puede ir así <ol class="pinglist">
o en tu css debe haber algo como
comments ol { etc.... }