[WordPress] ダッシュボードの読み込みを速くさせる

2006年12月09日 土曜日 15時12分
E-Mail This Post/Page Print This Post/Page

管理画面へのログインに時間がかかってしょうがない、と感じた人は少なくないだろうと思います。そこで、このスピードを速くさせる方法を紹介します。

この原因のひとつに、ログインするごとにフィードを読み込ませてダッシュボードに表示させていることがあります。これを削除すると表示速度が格段に上がります。また、依頼されたクライアント用のサイトであればその必要性も薄いかと思われます。

wp-admin/index.php を編集します。line 127 あたりです。以下を削除します。

PHP:
  1. <p><?php _e("Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our <a href='http://codex.wordpress.org/'>great documentation</a> or if that doesn't help visit the <a href='http://wordpress.org/support/'>support forums</a>."); ?></p>
  2. <?php
  3. $rss = @fetch_rss('http://wordpress.xwd.jp/japan/feed/');
  4. if ( isset($rss->items) && 0 != count($rss->items) ) {
  5. ?>
  6. <h3><?php _e('WordPress Development Blog'); ?></h3>
  7. <?php
  8. $rss->items = array_slice($rss->items, 0, 3);
  9. foreach ($rss->items as $item ) {
  10. ?>
  11. <h4><a href='<?php echo wp_filter_kses(wpj_rss_convert($item['link'])); ?>'><?php echo wp_specialchars(wpj_rss_convert($item['title'])); ?></a> &#8212; <?php printf(__('%s ago'), human_time_diff(strtotime($item['pubdate'], time() ) ) ); ?></h4>
  12. <p><?php echo wpj_rss_convert($item['description']); ?></p>
  13. <?php
  14.     }
  15. }
  16. ?>
  17.  
  18.  
  19. <?php
  20. $rss = @fetch_rss('http://r.hatena.ne.jp/WordPress-Japan/WordPress/rss');
  21. if ( isset($rss->items) && 0 != count($rss->items) ) {
  22. ?>
  23. <div id="hatena">
  24. <h3><?php _e('Other WordPress News'); ?> <a href="http://phpbb.xwd.jp/viewtopic.php?t=592"><?php _e('Entry'); ?> &raquo;</a></h3>
  25. <ul>
  26. <?php
  27. $rss->items = array_slice($rss->items, 0, 20);
  28. foreach ($rss->items as $item ) {
  29. ?>
  30. <li><?php echo wp_specialchars(wpj_rss_convert($item['ag']['source'])); ?> &raquo; <a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars(wpj_rss_convert($item['title'])); ?></a></li>
  31. <?php
  32.     }
  33. ?>
  34. </ul>
  35. </div>
  36. <?php
  37. }
  38. ?>

Share This

この記事に関連するトピック

このエントリーへの Yahoogle Suggestions

Trackback this Post |

 

記事ヒット TOP 10

WordPress Tips from Social Bookmarks Jp

    There is no entries available for this category.

WordPress Tips from Social Bookmarks

    There is no entries available for this category.

WordPress Plugins from Social Bookmarks

    There is no entries available for this category.

Tag Cloud

admin Admin Drop Menus Admin Memo Admin Panel advanced drop menus array unique blog cron dabeya Dagon Design Sitemap Generator dropcap Edit N Place error Feedburner game google hack html HTML CSS Internet NEWS Permalink Redirect PHP phpBB2 plugin RSS scripts search stattraq template the content Ultimate Tag Warrior Web Management Windows XP Wordpress WP Plugins WPページ  拡張子 カスタマイズ カスタム関数 カテゴリー コード セキュリティ タグ トップページ トラックバック フィード 投稿 抜粋 日本語 時刻 時間 正規表現 表示 記事

サイト メニュー

Blogtimes image
ぱそずき :D)‐く © 2008
Close
E-mail It