忍者ブログ
19 January

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

19 March

.htaccess 301リダイレクト

さくらサーバーでは Options +FollowSymLinks を入れるとエラーになる
http://the-journey-of-life.info/2012/04/sakura-htaccess-301r/


wwwなし、index.htmlなしで統一したいとき


RewriteEngine on
RewriteCond %{HTTP_HOST} ^www¥.ドメイン名¥.com
RewriteRule (.*) http://ドメイン名.com/$1 [R=301,L]

RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://ドメイン名.com/$1 [R=301,L]




PR
19 March

wpのリンクを相対パスにしたい

http://dogmap.jp/2011/03/18/wordpress-relative-url/
http://weble.org/2011/03/17/wordpress-ssl

class relative_URI {
    function relative_URI() {
        add_action('get_header', array(&$this, 'get_header'), 1);
        add_action('wp_footer', array(&$this, 'wp_footer'), 99999);
    }
    function replace_relative_URI($content) {
        $home_url = trailingslashit(get_home_url('/'));
        return str_replace($home_url, '/', $content);
    }
    function get_header(){
        ob_start(array(&$this, 'replace_relative_URI'));
    }
    function wp_footer(){
        ob_end_flush();
    }
}
new relative_URI();

17 March

ウジェットに記述したショートコードが効かない

add_filter('widget_text', 'do_shortcode');


なんと!ショートコードを効かすにはfunctions.phpに記述しなければいけませんでした!
こんなのデフォルトで付いてていいんじゃないのおおお????
普段なんらかのプラグインを入れて、説明文にはショートコードをウジェットにいれるとか
普通にかいてあるので、本当は自分で指定しなきゃいけないってしりませんでした。

だから何故動作しないのか無駄に悩むことになった!!!!!!!
12 March

WPでログインしてる人のみ見える条件分岐

http://staku.designbits.jp/wp-is-current-user-login/

<?php if (is_user_logged_in()): ?>
  // ログインしている
<?php endif; ?>



いちいち確認してもらうのに非公開には出来ない部分もある
そこの場所をこれで囲う