[WP覚書]WordPressで通常サイトを作る時に必要な設定。あくまで自己流。

2013年10月24日

必要そうなプラグイン

初めから入ってるものもあるし、サイトの仕様にもよりますが。
Akismet
Category Order and Taxonomy Terms Order
Display widgets
PS Auto Sitemap
PS Disable Auto Formatting
Slimbox
Widget Logic
WP Multibyte Patch
WP To Top

ベーステンプレート

wp.vicuna.exc
私はね!
ちなみにvicnaを入れた場合は「設定」内の「vicna設定」と「レイアウト」の設定が必要になります。

パーマリンク設定の変更

「設定」→「パーマリンク設定」
「カスタム構造」にチェックを入れて、以下を入力。
/%category%/%postname%.html

function.phpに入れるもの

トップページに表示するニュース記事の画像サムネイルの設定

function catch_that_image() {
    global $post, $posts;
    $first_img = '';
    ob_start();
    ob_end_clean();
    $output = preg_match_all('/<img.+src=&#91;\'"&#93;(&#91;^\'"&#93;+)&#91;\'"&#93;.*>/i', $post->post_content, $matches);
    $first_img = $matches [1] [0];
 
if(empty($first_img)){ //Defines a default image
        $first_img = "http://hogehoge.com/images/noimages_sq.png";
    }
    return $first_img;
}

WordPress

Posted by ponnao