我的wordpress里上传图片为啥显示成功,但是无法显示?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的wordpress里上传图片为啥显示成功,但是无法显示?相关的知识,希望对你有一定的参考价值。

这是上传完了以后的在"控制面板"->"媒体"->"编辑媒体"里看到的结果

文件URL

http://colaword.com/wp-content/uploads/2009/12/logo.jpg
上传文件的路径。

但是不知道为什么直接打开这个路径
http://colaword.com/wp-content/uploads/2009/12/
会发现没有这图片,为什么?怎么修改?哪位高人帮帮我。

参考技术A 上传文件名称如果是中文的,通常是无法显示。建议修改上传文件为英文或者数字命名,而后再试试文章编辑器里面的插入本地图片。 参考技术B 你传图片的时候,文件名一定要用英文,不要用中文名字的图片,你试试呢,以前我也遇到过这个问题。一开始传上去好了,在别的ip打开就是小红叉。后来再在文章中添加图片,图片原名称只要是英文传上去的就可以了。

WordPress记录———自定义小工具自定义图片

技术分享技术分享

        如上图,我在WordPress中前台自定义中的小工具里设置轮播图,根据自己需求增加图片数量,添加图片时js有点问题,点击上传,选择图片之后确实显示了,但是却没有触发隐藏input的change事件,搞了好久才发现这个问题,jQuery("input[name=‘"+button_id+"‘]").trigger(‘change‘);//只有触发change事件才会更新。

        自己创建的添加轮播图小工具。原本想在模板中增加的,结果技术不够,实现不了TT。下面记录下这个轮播图代码form()中的:

 1     function form($instance){
 6         $instance = wp_parse_args((array)$instance,array(‘lunbo_image_url‘=>‘‘,‘lunbo_image_link‘=>‘‘));//默认值
 8         $lunbo_image_url = htmlspecialchars($instance[‘lunbo_image_url‘]);
10         $lunbo_image_link = htmlspecialchars($instance[‘lunbo_image_link‘]);
11 
12         wp_enqueue_media();
13         ?>
14 
15         <div class="custom-img-container" id="<?php echo $this->get_field_name(‘lunbo_image_url‘); ?>">
16             <?php if ( !empty($lunbo_image_url) ) : ?>
17                 <img src="<?php echo $lunbo_image_url ?>"  style="max-width:100%;" />
18             <?php endif; ?>
19         </div>
20 
21         <p style="text-align:left;"><label for="<?php echo $this->get_field_name(‘lunbo_image_link‘); ?>">轮播图链接:<input id="<?php echo $this->get_field_id(‘lunbo_image_link‘); ?>" class="lunbo-image-link" name="<?php echo $this->get_field_name(‘lunbo_image_link‘); ?>" type="text" value="<?php echo esc_attr($lunbo_image_link); ?>" /></label></p>
22 
23         <input type="hidden" value="<?php echo esc_attr($lunbo_image_url); ?>" name="<?php echo $this->get_field_name(‘lunbo_image_url‘); ?>" class="lunbo-image-url" id="<?php echo $this->get_field_id(‘lunbo_image_url‘); ?>"/>
24         <p style="text-align:left;"><label for="<?php echo $this->get_field_name(‘lunbo_image_url‘); ?>"><a id="<?php echo $this->get_field_name(‘lunbo_image_url‘); ?>" class="upload-custom-img button" href="#">上传</a></label></p>
25         <p>
26         <?php $admin_url=admin_url( ‘admin-ajax.php‘ ); ?>
27         <script type="text/javascript">
28             jQuery(document).ready(function(){
29                 var lunbo_image_frame;
30                 var button_id;
31                 jQuery(‘.upload-custom-img‘).on(‘click‘,function(event){
32                     button_id =jQuery( this ).attr(‘id‘);
33                     jQuery("input[name=‘"+button_id+"‘]").val(‘‘);
34                     jQuery("div[id=‘"+button_id+"‘]").empty();
35                     event.preventDefault();
36                     if( lunbo_image_frame ){
37                         lunbo_image_frame.open();
38                         return;
39                     }
40                     lunbo_image_frame = wp.media({
41                         title: ‘添加轮播图‘,
42                         button: {
43                             text: ‘添加‘,
44                         },
45                         multiple: false
46                     });
47 
48                     lunbo_image_frame.on(‘select‘,function(){
49                         attachment = lunbo_image_frame.state().get(‘selection‘).first().toJSON();
50                         jQuery("input[name=‘"+button_id+"‘]").val(attachment.url);
51                         jQuery("div[id=‘"+button_id+"‘]").append( ‘<img src="‘+attachment.url+‘"  style="max-width:100%;"/>‘ );
52                         jQuery("input[name=‘"+button_id+"‘]").trigger(‘change‘);//只有触发change事件才会更新
53                         lunbo_image_frame.close();
54                     });
55                     lunbo_image_frame.open();
56                 });   
57             }); 
58         </script>
59         <?php
60 
61     }

         另附加上自定义小工具学习链接:http://www.ashuwp.com/courses/noplugin/148.html  地址2:http://yangjunwei.com/a/856.html



以上是关于我的wordpress里上传图片为啥显示成功,但是无法显示?的主要内容,如果未能解决你的问题,请参考以下文章

为啥上传的附件图片不显示?只显示个链接

为啥我的图片文件在ASP调试里替换可以,但是上传后就不能替换?

为啥在网站后台上传图片,总提示:您上传的文件太大,上传不成功,请在坐高手帮帮忙解决!小女子在此谢过!

为啥图片在电脑里显示不出来,但是浏览器可以?

xampp中的Wordpress无法上传图片

php上传文件到linux服务器,可以上传成功,但是图片本身为啥没有可执行权限呢,怎么设置啊