swf 没有显示?

发布于 2024-12-06 07:12:48 字数 534 浏览 1 评论 0原文

我有一个 WordPress 主题,正在适应客户的需求,但我无法使 125x125px 的侧边栏广告显示相同大小的 swf 而不是图像。如果我插入 swf 链接,它会显示损坏的图像缩略图。 请帮助我实现这一目标。 如果对您有帮助,该网站的网址为 http://infodrum.ro/inde2.php/

PHP 代码

<?php if(get_theme_option('ads_125') != '') {
?>
    <div class="sidebaradbox">
        <?php sidebar_ads_125(); ?>
    </div>
<?php } ?>

CSS

.ad125 {
    margin: 10px;
    height: 125px;
    width: 125px;
}

I have a wordpress theme I'm adapting to a clients needs, but I can't make the sidebar ads, which are 125x125px, show a same sized swf instead of a image. If I insert a swf link, it show a broken image thumbnail.
Please help me achieve this.
If it helps you, the url of the website is http://infodrum.ro/inde2.php/

PHP code

<?php if(get_theme_option('ads_125') != '') {
?>
    <div class="sidebaradbox">
        <?php sidebar_ads_125(); ?>
    </div>
<?php } ?>

CSS

.ad125 {
    margin: 10px;
    height: 125px;
    width: 125px;
}

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

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

发布评论

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

评论(1

我还不会笑 2024-12-13 07:12:48

您通常会在后端插入图像的路径,对吧?就像“http://somedomain.com/image.jpg”一样

,插件内部的代码很可能会生成类似的内容,

<img src="WHATEVER YOU ENTERED" />

因为 SWF 不是有效的图像,所以一切都会变得很糟糕。

我建议您尝试使用普通的 WP Text Widget!

You're usually inserting a path to an image in The backend, right? Like "http://somedomain.com/image.jpg"

Most likely, The Code Inside The Plugin then Produces something like

<img src="WHATEVER YOU ENTERED" />

Since an SWF is Not a valid image, everything ends up being terrible.

I suggest you try The normal WP Text Widget instead!

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