レッドトイプードル・チョコタンチワワ・ブルーマールチワワ・ヨークシャーテリアの子犬を紹介するレッドトイボックスです。

レッドトイボックス

ママと一緒にまってるよ♪

ブログ レッドトイプードルが好き!

wordpress WP-DBManager(データベースのバックアップ)

2012 年 5 月 12 日

有効化すると エラーが出ます。

なので

wp-content/plugins/wp-dbmanager の中の 「htaccess.txt」 を
wp-content/backup-db に移動させて、ファイル名を「.htaccess」に変更する。

で 日本語化は、

ここから ファイルをDLして
中身の 「wp-dbmanager-ja.mo」 と 「wp-dbmanager-ja.po」を
wp-content/plugins/wp-dbmanager に入れる

使い方は、

「WP-DBManager」メニューの【DBバックアップ】をクリックして保存する。
バックアップファイルの保存先は、「wp-content/backup-db」フォルダです。

wordpress ウィジットのデザイン変更

2012 年 5 月 8 日

functions.php の373行目あたりからのところを変更する。

「検索」に関しては、ここじゃなくて
wp-includes/general-template.php の160行目あたりのところを変更する。

「検索:」 の 「:」 を取るには、
wp-content/languages/ja.mo の12462行目を変更する。

.moファイルの編集は、「Poedit」で .poファイルを開き編集し 「.moファイルの自動保存」の設定にして
「カタログの保存」アイコンをクリックする。

wordpress カスタム投稿のページが表示されない。

2012 年 4 月 21 日

とりあえず パーマリンクの設定 を更新してみる。
どこも変更しなくて 更新だけでOKです。

わたしは、この方法で2つのサイトを立ち直らせる事が出来ました。^^

wordpress 同一カテゴリ内のページリンク

2012 年 4 月 20 日

普通に

書くと ブログ全体が対象となって ページリンクを生成します。

でも

<div><?php previous_post_link(‘%link’, ‘%title’, TRUE); ?></div>
<div><?php next_post_link(‘%link’, ‘%title’, TRUE); ?></div>

とすると そのカテゴリー内だけでページリンクを生成します。

コピペ用↓

<div><?php previous_post_link( ‘%link’, ‘<span>’ . _x( ‘&larr;’, ‘Previous post in category’, ‘twentyten’ ) . ‘</span> %title’, TRUE ); ?></div>
<div><?php next_post_link( ‘%link’, ‘%title <span>’ . _x( ‘&rarr;’, ‘Next post in category’, ‘twentyten’ ) . ‘</span>’, TRUE ); ?></div>

index.html を index.php にリダイレクトさせる。

2012 年 4 月 17 日

.htaccess に 以下を書く。

◆http://www.exsample.com/index.htmlのアクセスを
http://www.exsample.com/index.phpへリダイレクトする。

DirectoryIndex index.html index.php

◆http://www.exsample.com/sample/index.htmlのアクセスを
http://www.exsample.com/sample/index.phpへリダイレクトする。

Redirect permanent /sample/index.html http://www.exsample.com/sample/index.php

.htaccess ファイルは、最後に 改行 を入れる事をお忘れなく。

▲このページのトップへ

Copyright (c) Red Toybox 2007 All Rights Reserved.