你换个主题就行了啊,或者查看源代码,然后修改相应的CSS文件
成都创新互联自2013年创立以来,先为泾源等服务建站,泾源等地企业,进行企业商务咨询服务。为泾源企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
我在另一个问题,有提到相关解决方法:
具体示例代码:
?php
//The args
$args = array(
'cat' = 61,
'posts_per_page' = 10,
);
// The Result
$tech = new WP_Query( $args );
if ( $tech - have_posts() ) {
// The Loop
while ( $tech - have_posts() ) : $tech -the_post();
echo 'li';
the_title();
echo '/li';
endwhile;
}else {
echo 'no posts in current category!';
}
?
对照你的代码
?php if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'loop', 'index' );
endwhile; ?
进行改动就OK了。
在IE10和CHROME下正常,说明你的绝对路径是没问题的啊
IE8下不能应用你的CSS,这句似乎表明问题出在CSS的条件载入。是不是可以尝试:
!--[if IE 9]
link rel="stylesheet" type="text/css" href="?php echo get_template_directory_uri(); ?/images/ie9only.css" /
![endif]--
以全路径尝试下。希望有所帮助!