wordpress:管理画面真っ白
Posted on 日曜日, 11 月 8th, 2009 at 3:06 PMプラグインによっては管理画面が真っ白になるようだ。^^;
強行ログイン方法は、FTPなどでpluginsディレクトリの名前を変更するwログイン後元にもどす。
しかしこれをすると使用中プラグインが全て停止になる。
何を使用していたかは、あらかじめメモっておくべき?w
関連記事
プラグインによっては管理画面が真っ白になるようだ。^^;
強行ログイン方法は、FTPなどでpluginsディレクトリの名前を変更するwログイン後元にもどす。
しかしこれをすると使用中プラグインが全て停止になる。
何を使用していたかは、あらかじめメモっておくべき?w
関連記事
wordpress:monthchunksを使って 月刊アーカイブを短くwする
monthchunks-2.1.zip をDLし あっぷ。プラグインON。
表示させたい場所に次を明記。
<?php monthchunks(); ?>
-----------
新しい年を上に表示するよう変更しよう。monthchunks.php 85行目辺り・・・かな
// set SQL order by sort order
if ($year_order == "descending")
{
$year_order = "DESC";
}
else
{
$year_order = "ASC";
}
次のように変更
// set SQL order by sort order
if ($year_order == "descending")
{
$year_order = "ASC"; //"DESC";
}
else
{
$year_order = "DESC";//"ASC";
}
-----
入れ替えるだけw
関連記事
wordpressにて 大量のトラックバックがくる。。。
数百件来ると個々に削除するのは大変・・。
標準プラグイン Akismet を有効化。
APIキー はwordpress.com 登録し、入手する。
wordpress.com ログイン - 管理画面(ユーザー)-プロフィール あなたのWordPressのAPIキーは○○○
---------
別途プラグイン
Simple Trackback Validation Plugin
解凍した ファイル simple-trackback-validation.php を
/wp-content/plugins へ
管理画面 - 設定 - Simple TB Validation -
How to deal with spam trackbacks? (対処方法)
関連記事
header 部分を書き換える。
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
(タイトル+ブログ名)
↓
<title><?php if (function_exists('seo_title_tag')) { seo_title_tag(); } else { bloginfo('name'); wp_title();} ?> <?php bloginfo('name'); ?></title>
(任意のタイトル+ブログ名)
関連記事
使用中テーマのサイドバー(最新エントリ・最新記事)の部分に以下を。。
<h2>最新エントリ</h2>
<li>
<ul>
<?php
$myposts = get_posts('numberposts=10'); foreach($myposts as $post) :
setup_postdata($post); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php
$days=3; //set this to how many times are considered NEW!
$today=date('U'); $entry=get_the_time('U');
$diff1=date('U',($today - $entry))/86400;
if ($days > $diff1) {
echo ' <img src="画像までのパス/new.gif" alt="New!" />';
} ?>
</li>
<?php endforeach; ?>
</ul>
</li>
----
<ul>などは使用中テーマにより調整すべし。
<ul>
<?php
$myposts = get_posts('numberposts=10'); foreach($myposts as $post) :
setup_postdata($post); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php
$days=3; //set this to how many times are considered NEW!
$today=date('U'); $entry=get_the_time('U');
$diff1=date('U',($today - $entry))/86400;
if ($days > $diff1) {
echo ' <img src="画像/new.gif" alt="New!" />';
} ?></li>
<?php endforeach; ?>
</ul>
関連記事
wordpress プラグイン plugin kill-wptexturize 導入。
ダブルクォーテーション " や シングルクォーテーション ' などの記号が
勝手に全角になってしまう。wordpressの仕様らしぃ。
ソース表示などしている場合 半角 " って 打っても 全角の ” になってしまう。。
ので文字・記号などの自動変換を無効化することで解決。
(プラグインは有効化するだけでおk)
関連記事
wordpressプラグインpulgin導入。
日本語化してる人がいる~。
http://blockworks.jp/archives/530
あとはカスタマイズしてる人がいる。。http://www.lovy-studio.com/blog/?cat=8
WP e-Commerce の Settings の 言語を 日本語へ。
関連記事
wordpressプラグインplugin導入。日本語
http://wp.mmrt-jp.net/plugin-japanization-project/simple-trackback-validation/
関連記事
wordpressプラグインplugin導入。。
携帯からこのwordpressにて作成したホームページが閲覧できるプラグイン。
2007年度から 開発が終わってるのかなぁ。。。。
Ktai Style 携帯対応 のプラグインが 別鯖 PHP4.××に 非対応の為
Mobile Eye+ というプラグインを入れてみた。
有効にしたら管理画面が。。。文字化け。。。。WP2.6は Read the rest of this entry »
関連記事