有童鞋在faq.wopus.org问:幻灯片及热点文章图片链接如何设置成可以指向别人网站的外链?这个功能貌似之前帮人diy过,适合作外链广告或者链接到其它站点,可以内链接也可外链,方便灵活,操作也不是很复杂,发出来为有此需求者提供参考。
首页幻灯
打开hotnewsproincludes目录的slider.php模板文件,查找:
<?php if ( get_post_meta($post->id, 'show', true) ) : ?>
<?php $image = get_post_meta($post->id, 'show', true); ?>
<a href=<?php the_permalink() ?> rel=bookmark title=<?php the_title(); ?>><img src=<?php echo $image; ?>width=400 height=248 alt=<?php the_title(); ?>/></a>
<?php else: ?>
替换为:
<?php if ( get_post_meta($post->id, 'show', true) ) : ?>
<?php $image = get_post_meta($post->id, 'show', true); ?>
<?php $url = get_post_meta($post->id, 'imgurl', true); ?>
<a href=<?php echo $url; ?> rel=bookmark title=<?php the_title(); ?>><img src=<?php echo $image; ?>width=400 height=248 alt=<?php the_title(); ?>/></a>
<?php else: ?>
使用该功能必须使用自定义栏目:
show 调用图片
imgurl 图片链接到的url地址
顶部热点图片
打开hotnewsproincludes目录的top_hot_a.php模板文件,用下代码替换所有:
<div id=featured class=clearfix>
<?php $recent = new wp_query('meta_key=hot&orderby=rand&showposts=4&caller_get_posts=4'); while($recent->have_posts()) : $recent->the_post();?>
<div class=item>
<div class=top_t>
<?php $image = get_post_meta($post->id, 'image', true); ?>
<?php $url = get_post_meta($post->id, 'imgurl', true); ?>
<a href=<?php the_permalink() ?> rel=bookmark title=<?php the_title(); ?>><img src=<?php echo $image; ?> alt=<?php the_title(); ?>/></a>
</div>
<div class=top_box><a href=<?php echo $url; ?> rel=bookmark title=<?php the_title_attribute(); ?>>详细内容</a></div>
<div class=boxcaption>
<h2><a href=<?php echo $url; ?> title=permalink to <?php the_title(); ?>><?php echo cut_str($post->post_title,30); ?></a></h2>
</div>
</div>
<?php endwhile; ?>
<div class=clear></div>
</div>
使用方法同样需要使用自定义栏目:
hot 调用文章
image 调用图片
imgurl 图片链接到的url地址