WordPress花式框插件不起作用


Wordpress fancybox plugin not working

在过去的 2 小时内,fancybox插件出于某种原因让我发疯。我过去曾在其他网站上使用它,但现在它拒绝工作。

所以我有这段代码调用图像所在的帖子:

<ul>
    <?php query_posts('cat=4'); ?>
    <?php while (have_posts()) : the_post(); ?>
        <li><a href="<?php the_permalink() ?>"></a>
            <?php $content = get_the_content();
            print $content; ?></li>
    <?php endwhile;?>
</ul>

wordpress我有一篇帖子(在第 4 类中),其中包含 2 张<ul> <li>图像,在 CSS 中它们被设置为display: inline;

看不出有什么问题?

检查主题<head>部分中的</body>标签和<?php wp_head(); ?>之前是否有<?php wp_footer(); ?>