将灯箱与 SimplePie 结合使用

发布于 2024-10-12 02:50:50 字数 786 浏览 2 评论 0原文

我正在开发一个项目,该项目使用 SimplePie 来提取大量新闻源,效果很好,但我希望 SP 链接能够在 LightBox 中打开网站页面,我该怎么做?

我用来生成 SP 链接的代码如下:

       <?php if ($feed->error): ?>
      <p><?php echo $feed->error; ?></p>
    <?php endif; ?>

    <?php foreach ($feed->get_items() as $item): ?>

        <div class="chunk">

        <div class="time-stamp">
        <?php echo $item->get_date('j M Y | g:i a T'); ?></p>
        </div>


            <h4 <style="background:url(<?php $feed = $item->get_feed(); ?>) no-repeat; margin: 0 0 10px;"><a href="<?php echo $item->get_permalink();  ?>"><?php echo $item->get_title(); ?></a></h4>

如果您能给我任何帮助,那就太好了,谢谢。

Im working on a project that uses SimplePie to to pull in a number of news feeds which is working great, but I would like the SP links to open the page on site in a LightBox, how can I do this?

The code that Im using to generate the SP links is as follows:

       <?php if ($feed->error): ?>
      <p><?php echo $feed->error; ?></p>
    <?php endif; ?>

    <?php foreach ($feed->get_items() as $item): ?>

        <div class="chunk">

        <div class="time-stamp">
        <?php echo $item->get_date('j M Y | g:i a T'); ?></p>
        </div>


            <h4 <style="background:url(<?php $feed = $item->get_feed(); ?>) no-repeat; margin: 0 0 10px;"><a href="<?php echo $item->get_permalink();  ?>"><?php echo $item->get_title(); ?></a></h4>

Any help that you can give me would be great, thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷迭香的记忆 2024-10-19 02:50:50

嘿嘿,
您可以使用此 JQuery 插件 http://colorpowered.com/colorbox/
这是一个非常好的。

对于您的代码,您必须使用非常简单的内容,例如

<a class="cboxElement" href="<?php echo $item->get_permalink();  ?>"><?php echo $item->get_title(); ?></a>

谢谢,
阿克沙特

Hey hi,
You can use this JQuery plugin http://colorpowered.com/colorbox/
Its a very good one.

For your code, you will have to use something very simple like

<a class="cboxElement" href="<?php echo $item->get_permalink();  ?>"><?php echo $item->get_title(); ?></a>

Thanks,
Akshat

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文