WordPress 2.6 Plugin メモ
WordPress 2.6 Plugin メモ
Plugin:登録
- akismet
- ImageManager
- maintenance-mode
- wpj-highslide
- wp-multibyte-patch
- wp-pagenavi
- wp-simplegmaps
Plugin:停止
- RemoveDashboard
Plugin:削除
- wp-table : WP2.6でエラー
- videopop_plus
Plugin:変更メモ
ImageManager
デフォルトでhaighslide表示するようにimagemanager-plugin.phpを変更
- Insert as:Link to the Image 用
//Original
str += ' rel="lightbox" ';
//Change
str += ' class="highslide"';
str += ' onclick="return hs.expand(this)"'; - Insert as:Thumbnail with link to Image 用
//Original
str += ' rel="lightbox" ';
//Change
str += ' class="highslide"';
str += ' onclick="return hs.expand(this)"'; - Insert as:Thumbnail with PopUp 用
//Original
str += " onclick=\"ps_imagemanager_popup(this.href,'" + params.f_alt + "','" + params.f_width + "','" + params.f_height + "');return false\" onfocus=\"this.blur()\" ";
//Change
str += ' class="highslide"';
str += ' onclick="return hs.expand(this)"';
Ajax関連
- Ajaxプラグイン変更
lightboxとhighslideの同時利用からhighslide単独に変更 - wpj-highslide:wpj-highslide.php変更
//Original
$highslide_path = get_settings('home')."/wordpress/wp-content/plugins/wpj-highslide/";
//Change
$highslide_path = get_settings('siteurl')."/wp-content/plugins/wpj-highslide/";

