Skip to main content

Home/ WordPress Beginners/ Group items tagged wp

Rss Feed Group items tagged

Toshiro Shimura

WordPressウィジェット一覧 - 0 views

  •  
    WordPress CodexのThird Party Widgetsより、 2007.5.18現在、177個 * 30Boxes (http://ottodestruct.com/blog/2006/04/28/30boxes-widget/) - 30Boxes カレンダーのエベントを表示(要PHP 5) * A Yahoo SiteExplorer Widget (http://www.utheguru.com/yahoo-sidebar-link-badge-widget-for-wordpress/) - Yahoo Site Explorer Badge をウィジェット化 - デモ:Yahoo Badge Widget Demo * About Me Widget (http://www.samdevol.com/about-me-widget-for-wordpress/) - 画像などを加えた'About Me'(自分について)を表示 * Active Discussions (http://jayandrewallen.com/active-discussions-sidebar-plug-in-for-wordpress-20/) - コメントの多い投稿を表示 * Ad Rotator (http://kpumuk.info/wordpress/wordpress-widgets-ad-rotator/) - <!-more->で区切った複数のHTMLコードを順番に表示 * AddThis Sidebar Wiget (http://foolip.org/blog/2007/05/06/addthis-sidebar-widget/) - フィード購読とソーシャルブックマークのボタン * Adsense Widget for WordPress (http://www.mikesmullin.com/2006/04/01/adsense-widget-wordpress-sidebar/) - Adsenseの色、サイズ、h2をコントロール * Apple Trailer (http://www.sosuechtig.de/wordpress-widgets/) - apple.com から映画の予告編をランダムに表示 * Around This Date In The Past (http://www.junyent.org/blog/arxius/2006/05/20/around-this-date-in-the-past-wordpress-widget/) - x 年前の今日の投稿記事を表示 * Associative Dictionary (http://dirkie.nu/2006/05/01/associative-dictionary-widget/) - 個人辞書を作成表示 * AvFuel (http://blog.dannyevarts.net/2006/06/28/avfuel-my-first-useful-wordpress-widget/) - 最新の航空燃料の値段を表示 * Battlefield 2 Stats (http://www.viper007bond.com/wordpress-plugins/battlefield-2-stats/) - Battlefield 2 プロファイルを表示 * BDP RSS Agregator (http://wordpress.org/support/topic/67364?replies=1) - BDP RSS Agregator plugin (http://www.ozpolitics.inf
Toshiro Shimura

caramel*vanilla » WordPress 2.5 RC1を使ってみた。 - 0 views

  • 使いやすくなった投稿画面 気になるのは1番お世話になるであろう投稿画面。よく使う機能以外はデフォルトで非表示になっており、全体的にスッキリしています。 タグ 特にタグまわりが使いやすいと感じたので、これを機会にプラグイン(Ultimate Tag Warrior)で行っていたタグ付けをWP標準のタグ機能に移行しました。 オートコンプリートでタグ候補を表示してくれるし、削除も1クリックです。
  • ファイルアップロード 画像や動画などのファイルを記事に貼り付ける場合、アップロードだけではなくURLを指定できるようになりました。「Media Library」がなかなかよくできていて、キーワードや月日で絞り込んで検索できるので過去にアップロードした画像の再利用がしやすくなっています。 特別なプラグインを導入せずに画像管理ができるのは素晴らしいのですが、ちょっと動作が重いように感じました。(1度はブラウザが落ちるというアクシデントが…)
  • パーマリンクの編集 以前は「Post Slug」欄でパーマリンクの指定ができましたが、WP2.5からは記事タイトルの下に新しく「Permalink」という欄が設けられています。 直感的でわかりやすいとは思うのですが、この「Permalink」欄は記事を1度でも下書き保存しないと表示されないのでちょっと不便かな?と思いました。
Toshiro Shimura

WordPress の URL を設置ディレクトリとは異なるディレクトリで表示する - sui - 0 views

  • 手順 2 で説明したように、変更前は /○○○○/index.php を読み込ませていましたが、ルートディレクトリ直下に移動した /index.php を読み込ませるように.htaccess で操作しています。 http://www.hogehoge.com/○○○○/wp-login.php からログインしなおす。 パーマリンク設定をデフォルトから変更していた場合、再度保存しなおす。 ※手動で .htaccess を書き換える場合には、管理画面のいちばん下に書き換えるためのソース(↑上のソース)が出力されますので、それを.htaccess にコピペして保存します。 新しいサイト URL にアクセスし、正常に表示されるか確認。 .htaccess のパーミッションを書き込み不能に戻す。
  • 4行目 require(’./wp-blog-header.php’); を require(’./○○○○/wp-blog-header.php’); と書き換えて保存。(「○○○○」は、WordPress 本体をインストールしてあるディレクトリ名) <変更後> &lt;?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./○○○○/wp-blog-header.php'); ?> この index.php は、WordPress 内部の動作命令すべてを受け取るファイルです(wp-blog-header.php から読み取っている)。なので、ここで編集した index.php から wp-blog-header.php へのパスを WordPress 本体がインストールされているサブディレクトリをはさんだパスに変更する、ということになります。 .htaccess のパーミッションを書き込み可能にする。(mod_rewrite ルールの変更。書き込み可能にしておけば、自動的に .htaccess の中身を変更してくれます。mod_rewrite ルールは手動で書き換えることも可能です。手順 6 を参考にしてください)
  •  
    4行目 require('./wp-blog-header.php'); を require('./○○○○/wp-blog-header.php'); と書き換えて保存。(「○○○○」は、WordPress 本体をインストールしてあるディレクトリ名) <変更後> この index.php は、WordPress 内部の動作命令すべてを受け取るファイルです(wp-blog-header.php から読み取っている)。なので、ここで編集した index.php から wp-blog-header.php へのパスを WordPress 本体がインストールされているサブディレクトリをはさんだパスに変更する、ということになります。
Toshiro Shimura

WordPress使用1ヶ月の感想(MovableTypeとの比較) | Tech de Go - 0 views

  • WPの場合、まずME(Multilingal Edition)と本家どちらにするか?ですが、本家WPでは日本語が表示できない、または支障が起こるのでは?という疑問があると思います。意外とMEと本家版の違いを説明したサイトがありませんでした。実際には、本家WPでも日本語表示は問題ないといって良いでしょう。管理メニューの一部が(.moを入れても)英語のままになったり、日付表示がおかしくなったりしますが、すぐ修正できます。MEの方は知らないのでコメントできません。
  • MTの場合は単体で一応最低限の機能は付けてある感じだったのに対して、WPの場合は単体での機能より、プラグインやテーマでカスタマイズしていく設計思想なのだと思います。ただ、 Tag機能やサイドバーWidgetまでプラグイン対応なのはどうかと思います。というのも、実際にプラグインを導入しようとして検索すると、TagまたはWidgetのプラグインは複数あり、どれが標準のもの(?)なのか迷うからです。 テーマも、私は初めデザインでテーマを決めましたが、それがプラグインに対応しているかどうかまで見極めないと、自分でカスタマイズしてからでないと思ったような表示にならないということで、最初の投稿までにカスタマイズが必要になってきます。この辺は「WordPressインストールしたら始めにやること」をご覧下さい。 もう一つ、「ブログロール」という他サイトへのリンクを管理する機能があるのですが、これはなぜプラグインではないのか、ちょっと変な感じがしました。しかも、初期設定でWordPressの開発者の方々のブログにリンクが張られているのも、戸惑いました。どうなんでしょう?
  • WPは基本はシンプルみたいに書きましたが、widgetやtagは基本ではないのに対して、以下のような凝った基本機能があります。 smilies( ←これ)は基本機能 akismetというスパムフィルタが非常に優秀 管理画面がAJAX(Prototype+Scriptaculous) 管理画面のダッシュボードでブログにリンクしているサイトを自動表示 記事の入力中の自動保存機能
  • ...1 more annotation...
  • APIについてはMTはモジュールを厳格に(?)分けたPerlのAPIがあり、ドキュメントも日本語でかなり公開されています。一方のWPはPHPのAPIがありますが、ドキュメントはMTに比べると未完で、他人のプラグインを見ていると、適当にWPの内部関数を呼び出して使ったりしていることもあります。MTの本体コードを弄ろうとは思いませんでしたが、WPの場合、本体コードを弄りたくなります。まぁ、それだけフレキシブルだということです。 私見ですがカスタマイズの中毒性はWPの方が高いと思います。私などは、ともすればカスタマイズしていて記事を書かない日が増えてしまいます(本末転倒!)。でも、他のWordPressでブログしてる人で、メインは別の話題でもWPカスタマイズ関連カテゴリーもある人や、「WordPressの醍醐味」と言って、プラグインやテーマの入れ替えを好む方がMTよりも多い気がします。 fc2やlivedoorなどのブログサービスより、MTであれWPであれ、カスタマイズが面白いから、かゆいところに手が届くからやる人が多いのではないでしょうか。だとしたら、WPの方が弄り甲斐があるような気がします。PHPが分からないということで敬遠される方もいるかと思いますが、カスタマイズしたい気持ちがあれば、初めPHPが分からなくても他人のコードをマネしているうちになんとなく何処をどうすると変わるのか分かるようになってきます。そのうちPHPも読めるようになってくると思います。
Toshiro Shimura

【WP】Gravatarデフォルト画像ではなく、サイトのキャプチャを表示する。WP-SnapAvatar - Ange*Blanc - 0 views

  • 『WP-SnapAvatar』は、コメント投稿者がGravatarに登録していない場合、デフォルト画像の代わりに、投稿者のサイトのキャプチャ画像を表示するWordpressプラグインです。 WP2.5にて、Gravatarの表示を有効にしている必要があります。 プラグイン配布元 → WordPress › WP-SnapAvatar « WordPress Plugins 導入方法 プラグイン配布元から『wp-snapavatar**.zip』をダウンロード。(Download) 解凍後、『wp-snapavatar』をwp-content/pluginsへアップロード。 管理画面にて有効化する。 Gravatarを表示する Settings(設定) &gt; Discussion(ディスカッション)にて、Avatar display(アバターの表示)を Show Avatars(アバターを表示する)にする。 Gravatarを表示させたい箇所(comment.php)に以下のコードを挿入する。 コード PHP: &lt;?php echo get_avatar( get_comment_author_email(), '48' ) ?&gt; 数値はアバター画像のサイズ。
Toshiro Shimura

1.5 ってこんな感じだったのね at insomniaque - 0 views

  • ちょっと懐かしいので、2.5 と 1.5 を比較してみました。ファイルサイズの差にはちょっとビックリ 1.5 にはなかったもの 画像投稿機能 TinyMCE タグ (もちろん) メディアライブラリ テーマのプレビュー (スクリーンショット) アップロードしたファイルの日付別の保存 ウィジェット おそらく、テンプレートタグとかのカスタマイズ用の機能はもっと少ないのではないかと思われます (is_user_logged_in はなかった)。懐かしいのは、記事作成中のプレビューとブックマークレット、それと、かなりモノトーンな管理画面。 コアファイルサイズ wp 1.5 - 1.05 MB (言語ファイルは含まず) wpme 2.0.11 - 2.90 MB wp 2.5 日本語版 - 4.65 MB ファイル・フォルダ数 wp 1.5 - 163 / 10 wpme 2.0.11 - 343 / 43 wp 2.5 日本語版 - 528 / 69
  • 最近ロリポが特に安定感がないからなのです。。。MySQL サーバーは変えたのでなんとかかんとかですが、FTP サーバーが最近不安定な気が・・・。Establish Error やら Database Error やらがしょっちゅう起きてします。本気で移動もアリかと思い始めました。
Toshiro Shimura

What exactly is a widget-ready WordPress theme? | Theme Lab - 0 views

  • Step 1: Check if the theme is widget-ready You can’t use widgets if the theme you’re using isn’t widget-ready in the first place. Navigate to your Presentation menu and proceed to the Widgets sub-menu of your administration panel. If you see something like this, you’re out of luck:
  • Step 1: Check if the theme is widget-ready You can’t use widgets if the theme you’re using isn’t widget-ready in the first place. Navigate to your Presentation menu and proceed to the Widgets sub-menu of your administration panel. If you see something like this, you’re out of luck:
  • Step 2: Use available widgets For the rest of the tutorial, we’ll be working with one of our widget-ready themes called Moonlit Sky. You’ll notice this particular free WordPress theme has two sidebars on the right side. Both of these sidebars are widgetized. Go ahead and drag some of the available widgets into the sidebar of your choice and save the changes. These changes will be reflected on your main site automatically. Some widgets have a little icon next to them where you can set things like the title of the widget to be displayed on the site. Here’s what the settings for the Categories widget looks like:
  • ...1 more annotation...
  • Step 3: More widgets If you scroll further down the page you’ll see how to add additional widgets to the pool of available widgets. This is especially useful for the text widgets, since you can put pretty much any text or HTML-based item in them and display them where you want on the sidebar, just like any other widget. Simply select the number you want on the dropdown box, and save. For one final example, we’ll arrange the widgets like so, with two text widgets:
Toshiro Shimura

WordPress 2.6 はすごいらしい - MMRT daily life - 0 views

  • 投稿内容の変更を最初から保存してくれる機能が追加されるようです。(diffみたいなもの?) これは複数人管理サイトで威力を発揮しそうですな。(もちろん、個人でも) 私も結構記事訂正する方なのですが、訂正前の記述はなるべく消さないようにしてたんです。どう変えたか、どこを変えたかたぶん1週間後には忘れていますからねぇ。(そりゃ、ち・・・<自粛>)そうすると表示された記事はごちゃごちゃしてきて、訂正すればするほど見づらくなってきくとです。 これならすっぱりさっぱりキレイに直しても後で困ることはなさそうです。こうなると、一体データベースはどうなるんですかね? すごく訂正するとどんどん肥大化するとか? でも、へたくそな記事を書く私としては、大いに歓迎したい機能です。 8月リリース(予定)が待ち遠しいっすね。
Toshiro Shimura

WP Super Cache と同居出来る様になったので Ktai Style を導入 at orioa - 0 views

  • うちのサイトは、Wp Super Cacheと、Wp Cache で動いてる箇所がバラバラで、不安定でした。完全に忘れてました。 ってことで、WP Super Cache と同居出来る ってのは 完全ではありません。
Toshiro Shimura

記事やページを PDF ファイルに変換してくれる『Web2PDF』 » [WordPress] Tips Community - 0 views

  • 本来は記事やページを PDF ファイルに変換してくれるプラグインを導入すべく、いくつかのプラグインを試してみたのですが、どうも日本語環境との相性が良くなかったり、当サイトはレンタルサーバを利用していることもあって、プラグインを動作させるための環境が整えられていなかったりということで動作せず。。。 ContuttoPDF Wordpress post2pdf plugin Wordpress post to pdf plugin だったら、プラグイン以外で何とかできないものかと思っていたところ、Web サイトやブログを PDF ファイルへ変換できるボタン(widget)を提供してくれる便利なサービスを見つけました。 Web2PDF Online Widget
Toshiro Shimura

[WP]wordpressをインストール先とは別のディレクトリをホームURLにする - WebTecNote - 0 views

  • ルートディレクトリとは違うディレクトリにWordpressをインストールして、ホームURLだけ擬似的にルートディレクトリにする方法。 この設定変更さえすれば、好きなディレクトリにWordpressを置くことが出来る。 複数設置する時やルートディレクトリはすっきりさせたいという時に便利。 ルートディレクトリのURLがhttp://example.comと仮定。 1.適当なディレクトリを作成する。(ここでは/wordpressというサブディレクトリにwordpressをインストールしたとする) 2.wordpress管理パネルの設定を開く 3.一般設定 にある WordPress のアドレス(URL)をWordpressのコアファイルがインストールされているURLに変更する(http://example.com/wordpress) 4.ブログのアドレス (URL)をルートディレクトリのURLに変更する。(http://example.com) 5.「設定を保存」ボタンを押す 6.1で作ったディレクトリにWordpressのコアファイルを移したりインストールしたりする。 7.index.php と .htaccessをルートディレクトリ(http://example.com)に移動させる 8.index.phpをテキストエディタで開く 9. require('./wp-blog-header.php'); という行を探して require(’./wordpress/wp-blog-header.php’); というように変更する。 つまり、wp-blog-header.phpの相対パスをインストールディレクトリに変更する。 10.ログインURLがhttp://example.com/wordpress/wp-admin/になります。 11.もしパーマリンク設定をデフォルトから変更していたら更新しといてください。 Wordpressが自動的に.htaccessを変更してくれます。 もし.htaccessに書き込み権限が設定されてなくて変更できなかったら、自分でコピペしてください。
Toshiro Shimura

Rauru Blog » Blog Archive » WordPress のキャッシュ - 0 views

  • ページキャッシュは WordPress 本体には無い機能で、plugin によって提供されます。1 Blog Cacher, WP-Cache, WP Super Cache などがあります。
Toshiro Shimura

WordPressのリッチエディタにCSSを適用する | Tech de Go - 0 views

  • WordPressのリッチエディタにはTinyMCEが使われている。リッチエディタを使うのはソースコードなどタグを記事本文として流し込むときだけなので、あまり気にしなかったが、使っている人から、なぜ明朝体のでかいフォントなのかと言われた。皆さんはどうしているのだろうか。ここではリッチエディタにオリジナルのCSSを適用する方法を調べてみた。 リッチエディタはiframeで実現されているため、擬似的にhtml-head-bodyの構造を取っている。ここに適用されているCSSは以下の3つだが、このうち”wordpress.css”が変更の対象となる。 wp-includes/js/tinymce/themes/advanced/css/editor_content.css wp-includes/js/tinymce/plugins/wordpress/wordpress.css wp-includes/js/tinymce/plugins/spellchecker/css/content.css 変更するにはまず適用するCSSを作成する。その際に、変更するwordpress.cssを当該CSSで@includeする。 フォントの指定を含め、一般的な設定をするのなら以下のようなCSSになるはず。使用しているテーマのCSSから必要な部分だけ持ってくればよい。
  • CSS /* rich_editor.css ver 0.1 by Junon */ @import url('http://www.techdego.com/wp-includes/js/tinymce/plugins/wordpress/wordpress.css'); body { margin: 0; padding: 0 10px; background-color: #fff; color:#000; font-family: Arial, Helvetica, Verdana, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "MS Pゴシック", sans-serif; font-size: 0.8em; line-height: 1.4; } p a:link { text-decoration: none; color: #186FD0; border-bottom: 1px dotted #186FD0; } p a:visited, p a:active { text-decoration: none; color: #666; border-bottom: 1px dotted #186FD0; } p a:hover { text-decoration: none; color: #186FD0; border-bottom: 1px solid #186FD0; } p { margin: 1em 0; } li { margin-top: 1em; } ul li { list-style: square; } ul li ul { margin-bottom: 0.3em; } ul li ul li { list-style: circle; } a:link img, a:hover img, a:visited img, a:active img{ border: none; } .alignleft { float: left; } .alignright { float: right; } .clearer { clear: both; } code, pre { font-family: "courier new", courier, monospace; } 上記をTinyMCEに適用すればよいのだが、今回は自分のテーマに付随させてテーマを外せばエディタのCSSも変わるようにする。
  • 上記のCSS(ここではrich_editor.cssとする)をテーマのstyle.cssと同じ階層に保存する(背景画像をテーマと共有するため)。 テーマのfunctions.php(無ければ新規に作成)の最後に以下のコードを記述する。 PHP function replace_editor_css($css_file) { $css_file = get_option('siteurl') . '/wp-content/themes/**theme-name**/rich_editor.css'; return $css_file; } add_filter('mce_css', 'replace_editor_css'); ちなみに、上記の部分を別のphpファイルにして、pluginsフォルダに入れるとプラグインになる。テーマを変えてもCSSを適用したいならプラグイン化をお勧めする。
Toshiro Shimura

caramel*vanilla » WordPress2.5でもBookmarkletから投稿する - 0 views

  • WP2.5のファイルを見てみると「wp-admin」ディレクトリ内にbookmarklet.phpがありました。新規投稿画面ではなく簡易投稿画面に移動してサッと投稿するにはこちら。http://site-url/の部分は各自編集してください。
  • 冒頭にあげたfuuriさんの記事へのコメント欄でNaoさんが紹介していたQuickPostプラグインがWPのBookmarkletよりも高機能です。 WordPress › QuickPost « WordPress Plugins WordPress Plugins/JSeries » QuickPost 日本語版 このプラグインで表示される投稿画面ではタグとカテゴリーしか設定できないので簡単にサクッと投稿する人(記事)向き。TumblrのBookmarkletのようなイメージです。
  • Bookmarkletではありませんが、ブラウザで今見ているページのリンクと選択範囲を引用文として投稿画面に貼り付けるならFirefox用のblogエディターを使うという手もあると思います。 ScribeFire :: Firefox Add-ons インストールすると右クリックのコンテキストメニューとステータスバーの「Blog this page」から今見ているページを投稿することができます。
Toshiro Shimura

[WP]2.2.3から2.5にバージョンアップしてみた - WebTecNote - 0 views

  • アップグレードで面倒なのって多分プラグインの見直しだと思うんだよね…。 プラグインが対応してないせいで上のバージョン使えないってこともあるし。 UltimateTagWarrier 管理してたタグはWordpressのタグへそっくりそのままエクスポートできた。便利。 プラグインの使用はそのまま可能だった。 wordpressのタグアーカイブとUTWのアーカイブが喧嘩して表示されなくなる。 サーバログ見るとデータベースでエラーが発生していた。プラグインオフにしたら表示は動くが… 日本語タグのバグがなくなるまで使いたいけど、アーカイブ表示出来ないのは致命的。 Tiny-MCE関係 aoinaさんの作ったプラグインwp-tinymceで超愛用してたんだけど Firebugで「tinyMCE is not defined」というエラーが発生して、ビジュアルエディタが操作不能になった。 プラグインオフにしてもソースにプラグインが出力するソースが表示されてたが、どうもキャッシュが残ってたのが原因らしい。(よくわからない) Problemi con Visual editor di Wordpress 2.5で配布されてるプラグインを使ったら直せた。 tiny_mce_config.phpの’compress’ =&gt; trueをfalseにしてからプラグインをオンにして、エディタをリロードしたらエラーが消えた。 Bookmarklet Helper aoinaさん作Bookmarklet Helperプラグイン。新規作成までは行くんだけど、引用の本文や参照元等のタグが一部挿入されない。 2.5はデフォルトについてたブックマークレットは削除されている。(2.6で復活するらしい)その影響? iG:Syntax Hiliter コードビューのボタンが表示されない。他は問題ないと思う。 WP-AddQuicktag 動かない。残念。
Toshiro Shimura

WP plugin "TinyMCE Advanced" | Rif.3rd - 0 views

  • Wordpress への投稿手段を、無駄に色々試していますが、WP が2.5になって、ビジュアルエディタのプラグインはちょっと怖かったので、様子を見てました。 でも、こんなにスゴいのがあったんですね。 なにがスゴいって、プラグインフォルダに入れて、有効化するだけ!という手軽さと、管理画面で、使いたいボタンをドラッグアンドドロップで増減できるとう便利さ!と、スタイルのボタンに自分のCSSのクラスが反映されちゃってるし。 スゲー! Plugin URL: TinyMCE Advanced » LaptopTips Version: TinyMCE Advanced version 3.0.1 (requires WordPress 2.5) TinyMCE 3.x Language Package Download で、Japanese をダウンロードして、TinyMCE 3.0.8と一緒に /wp-includes/js/tinymce へ入れたら、ボタンの種類も増えました。 もう少し色々試したら、また記事にしてみます ;-)
Toshiro Shimura

メールフォームを追加するWordPressプラグイン | VIVABlog - 0 views

  • メールフォームのWordPress用プラグインは何種類かあったので手頃なものから試してみました。XREAのサーバーに設置しているサイトで実験したものです。 WP-ContactForm 日本語対応版 文字化け Secure Form Mailer Plugin 文字化け無し、本文が表示されない PXS Mail Form 正常動作 PXSMail with Akismet スパム対策版 というわけで・・・ PXS Mail Formを設置方法
Toshiro Shimura

10 Things You Need to Know About WordPress 2.6 - 1 views

  • Post Versioning Developers familiar with Subversion, or SVN, understand the concept of versioning and diffs. Compare one file, or revision, against another file, or revision, and see a breakdown of differences between the two. With the help of GUI tools, developers can see a color-coded red vs. green (removed vs. added) presentation. This concept has now been applied to posts so you can view differences between posts as well as “revert” to an earlier version of a post. I absolutely love this feature and you can see an example of a “revision compare” built directly into WordPress.
  • Google Gears Support Gears is the Google technology that allows for Firefox (apparently IE 6 too, but I can’t confirm) to “pre-cache” pages and speed up access. Gears has been integrated with WordPress 2.6 on the admin side and speeds things up tremendously. This is particularly important where broadband access is limited or inaccessible (third world, for instance). To enable Gears in your new WordPress 2.6 installation, click on the Turbo link in the upper right corner of your WordPress admin.
  • XML-RPC Editor Functionality Quietly, a new bit of functionality snuck into WordPress trunk that threw a number of developers and kicked off an interesting discussion. In the development cycle, XML-RPC and Atom Pub API for remote editing was turned off by default as a “security precaution” since many recent WordPress security issues seem to stem from the XML-RPC protocol.
  • ...7 more annotations...
  • SQL Security - $wpdb-&gt;prepare() Back in WordPress 2.3, the prepare() first emerged, initially unused… but there. The method was very experimental at the time and was not ready for prime-time so, though it was included, it was not yet used. We started to see its emergence in WordPress 2.5 and in WordPress 2.6 it is being used just about everywhere.
  • Shift-Click Selection of Multiple Checkboxes in WP-Admin As the backend of WordPress continues to evolve after the release of the drastically redesigned admin in WP 2.5, usability enhancements are also making their way in.
  • More Avatar Options With the Automattic acquisition of Gravatar last year, in-built support for Gravatars was introduced in WordPress 2.5. WordPress 2.6 gives the blogger more options by allowing for selection of the “default” avatar. Out of the box, the default Gravatar can be “Mystery Man”, a generic grey avatar with a white silhouette of someone. Default avatars can also be “blank” (self-explanatory), the Gravatar logo, Identicons, Wavatars or MonsterIDs. These have all been a part of WordPress.com for some time and now come to the rest of us. For more information, Matt wrote a post for the WP.com community that you should probably check out. The difference here being, of course, that WordPress.com offers “dashboard avatars” and WPFROU (WordPress for the Rest of Us) does not include this functionality.
  • Page Templates over XML-RPC In addition to the XML-RPC/APP security measures listed above, a new key bit of functionality has now been exposed for API editors (and also, if you think about it, demonstrates the power behind XML-RPC and why you might want to turn it off if you don’t use it). The XML-RPC interface now allows for managing page templates from an API editor. To the best of my knowledge, no editor supports this yet and may not. However, increasingly there is the ability to remotely post content from places like YouTube, Utterz and others. None of these services would have any real use for this functionality either, however I want to point out that because they can post remotely anything that is exposed to the remote world can also be managed.
  • Press This Press this! is a new enhancement of a long-existing concept. Bookmarklets. In fact, WordPress used to have a bookmarklet included that would allow a user to quickly start a new post from the browser toolbar, but the functionality was limited.
  • Integrated Theme Preview Theme previewing has been a bugaboo for many a theme designer. How do we check and develop without affecting the rest of the site. Some folks resorted to using Ryan’s venerable Theme Preview plugin. Others setup a beta version of a site that was sandboxed off from the rest of the world. Lots of different approaches, all of which remain valid.
  • Plugin Management Overhaul Finally, the plugin management interface has received a face-lift and some added functionality. Active plugins and inactive plugins are segregated and with that new fangled Shift-click functionality I talked about before, plugin management just got really freaking simple. Note that Active plugins can be deactivated in bulk and Deactivated plugins can be activated or even deleted in bulk. Clean up that stale plugin list in a snap. But… there’s always a but… make a backup before you go nuts.
anekanttruagency

Why use File Manager Plugin for Wordpress? - WP File Manager - 0 views

  •  
    WordPress file manager plugin - Wp File Manager is the finest Plugin to overcome all the riddles throughout your website journey. But before moving forward, we need to understand why this plugin acts as the finest. So let us justify it by giving some thoughts to the circumstances that happen so frequently with almost every designer.
trimantra

How to setup multiple site in wordpress | Trimantra Blog - 0 views

  •  
    This new feature is being called Network or Multi-site option. In WordPress By default this feature is disabled. If you want to use this option in your WordPress, you need to enable it.To enable this feature, simply open your wp-config.php file located in your WordPress root folder.
  •  
    This new feature is being called Network or Multi-site option. In WordPress By default this feature is disabled. If you want to use this option in your WordPress, you need to enable it.To enable this feature, simply open your wp-config.php file located in your WordPress root folder.
1 - 20 of 81 Next › Last »
Showing 20 items per page