swf 没有显示?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常会在后端插入图像的路径,对吧?就像“http://somedomain.com/image.jpg”一样
,插件内部的代码很可能会生成类似的内容,
因为 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
Since an SWF is Not a valid image, everything ends up being terrible.
I suggest you try The normal WP Text Widget instead!