将灯箱与 SimplePie 结合使用
我正在开发一个项目,该项目使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿嘿,
您可以使用此 JQuery 插件 http://colorpowered.com/colorbox/
这是一个非常好的。
对于您的代码,您必须使用非常简单的内容,例如
谢谢,
阿克沙特
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
Thanks,
Akshat