我不知道我是否不小心弄乱了一些东西,但是由于某种原因,当我访问我的屏幕截图页面时,我收到了这个错误:
致命错误:在第 36 行的 /single-screenshots.php 中调用未定义函数 aq_resize()
该页面上的代码是这样的:
<?php
// BEGIN SCREENSHOTS GALLERY
$attachment_args = array(
'post_type' => 'attachment',
'numberposts' => -1, // one attachement image per post
'post_status' => null,
'post_parent' =>$post->ID,
'orderby' => 'menu_order ID'
);
$attachments = get_posts($attachment_args);
if ($attachments) {
foreach($attachments as $gall_image )
{
$att_img = wp_get_attachment_url( $gall_image->ID);
echo '<li>';
echo '<a class="grouped_elements" rel="group1" href="'.$att_img.'" title="'.$gall_image->post_title.'">';
echo '<img src="'. aq_resize($att_img, 140, 100, true) .'" alt=""/>';
echo '</a>';
echo '</li>';
}
}
?>
我不精通PHP,所以我不知道是什么原因造成的?有任何想法吗?