Wordpress上的缩略图和附件语法

时间:2013-08-26 23:50:39

标签: wordpress syntax

我使用这样的代码,但遗憾的是没有用。错误是图像无法加载,但代码显示在页面上。

 <?php 
$nextthumb = get_the_post_thumbnail($nextPost->ID);
$img_urltest = wp_get_attachment_url( $nextthumb,'full' ); 
$imagetest = aq_resize( $img_urltest, 500,325, true );  

$thumb = get_post_thumbnail_id(); 
$img_url = wp_get_attachment_url( $thumb,'full' ); 
$image = aq_resize( $img_url, 500,325, true ); 
 ?>
 <img src=" 
 <?php if($image) { 
 echo $image; 
 } 
 else { 
 echo $nextthumb; 
 } 
 ?>
 "alt="<?php  echo get_bloginfo('name'); ?>"/> 

0 个答案:

没有答案