0

我不知道我是否不小心弄乱了一些东西,但是由于某种原因,当我访问我的屏幕截图页面时,我收到了这个错误:

致命错误:在第 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,所以我不知道是什么原因造成的?有任何想法吗?

4

1 回答 1

4

简单回答:找不到函数aq_resize()

确保aq_resizer.php包含在您的代码中。

阅读如何使用Aqua-Resizer。

于 2013-03-05T03:01:21.300 回答