0

Wordpress ブログのすべての画像で Colorbox を使用したいと考えています。このコマンドを使用して、functions.php に rel='colorbox' を追加しています。

 //colorbox
  // adds the colorbox jQuery code
  function insert_colorbox_js() {
  ?>
      <script type="text/javascript">
      // <![CDATA[
      jQuery(document).ready(function($){
          $("a[rel='colorbox']").colorbox({
                  transition:'elastic', 
                  opacity:'0.7', 
                  maxHeight:'90%'
          });
          $("a[rel='colorboxvideo']").colorbox({
                  iframe:true, 
                  transition:'elastic', 
                  opacity:'0.7',
                  innerWidth:'60%', 
                  innerHeight:'80%'
          });
      });  
      // ]]>
      </script>
  <?php
  }
  add_action( 'wp_head', 'insert_colorbox_js' );

  // automatically add colorbox rel attributes to embedded images
  function insert_colorbox_rel($content) {
    $pattern = '/<a(.*?)href="(.*?).(bmp|gif|jpeg|jpg|png)"(.*?)>/i';
      $replacement = '<a$1href="$2.$3" rel=\'colorbox\'$4>';
    $content = preg_replace( $pattern, $replacement, $content );
    return $content;
  }
  add_filter( 'the_content', 'insert_colorbox_rel' );

この関数エントリは、ローカルの Mamp セットアップではうまく機能しましたが、Web サイトをサーバーに移動したため、機能しなくなりました。リンクの代わりに rel 属性が img タグに追加されます。

<div id="attachment_1131" class="wp-caption alignleft" style="width: 160px"><a href="http://www.somesite.net/somelink/" rel="attachment wp-att-1131"><img class="size-thumbnail wp-image-1131" title="Some title" src="http://www.somesite.net/wp-content/uploads/2011/04/CIMG0935-150x150.jpg" rel='colorbox' alt="Some Text" width="150" height="150" /></a><p class="wp-caption-text">Some other Text</p></div>

functions.php を再び機能させるにはどうすればよいですか?

助けてくれてありがとう!

ところで-私は最新のWordpress 3.4.2を使用しています

4

1 に答える 1

0

自分で解決策を見つけました-テーマでデフォルトのアップロードリンクが何らかの形で変更されました。この行を functions.php に追加する必要がありました。

update_option('image_default_link_type' , 'file'); 

というわけで、前回の投稿の機能は問題なく動作します...

于 2012-11-22T15:20:48.530 に答える