我的wordpress网站使用二十一主题的儿童主题。我遇到的问题是每个评论旁边都会出现一个损坏的图像链接。但这只发生在Chrome,Safari和Opera中。在Firefox和IE中它不存在。
奇怪的是,当我右键单击破碎的图像链接以尝试在源代码中检查它时,那里什么也没有。这不是DOM的地方!!!
我已尝试进入Wordpress的“讨论设置”并将“头像显示”更改为“不显示”,并将“默认头像”设置为空白。我已经删除了所有代码来显示来自二十一的函数.php(在函数twentyeleven-comment中)的头像。我已经尝试了所有可能的CSS解决方案,我无法让它们消失。
你可以在这里看到我在说什么:http://www.andersonandsonsfh.com/2011/07/gordon-severson/
我真的不知道要包含哪些代码,所以这里是我的代码Twentyeleven_comment
if ( ! function_exists( 'twentyeleven_comment' ) ) :
function twentyeleven_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
?>
<li class="post pingback">
<p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?></p>
<?php
break;
default :
?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
<article id="comment-<?php comment_ID(); ?>" class="comment">
<footer class="comment-meta">
<div class="comment-author vcard">
<?php
/* translators: 1: comment author, 2: date and time */
printf( __( '%1$s on %2$s <span class="says">said:</span>', 'twentyeleven' ),
sprintf( '<span class="fn">%s</span>', get_comment_author_link() ),
sprintf( '<a href="%1$s"><time pubdate datetime="%2$s">%3$s</time></a>',
esc_url( get_comment_link( $comment->comment_ID ) ),
get_comment_time( 'c' ),
/* translators: 1: date, 2: time */
sprintf( __( '%1$s at %2$s', 'twentyeleven' ), get_comment_date(), get_comment_time() )
)
);
?>
<?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .comment-author .vcard -->
<?php if ( $comment->comment_approved == '0' ) : ?>
<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyeleven' ); ?></em>
<br />
<?php endif; ?>
</footer>
<div class="comment-content"><?php comment_text(); ?></div>
<div class="reply">
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>↓</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
</div><!-- .reply -->
</article><!-- #comment-## -->
<?php
break;
endswitch;
}
endif; // ends check for twentyeleven_comment()
请帮忙!这让我发疯了!
答案 0 :(得分:2)
在Firefox中使用Firebug,或在Chrome或Safari或IE8中使用开发者工具查看您网站上的内容。您将看到图像comment-arrow.png的404,并且在style.css中调用,应该在/ images /中。删除style.css中的调用以删除图像,或者确保图像位于文件夹中以便显示。