Skip to main content

Home/ Groups/ WordPress Beginners
Toshiro Shimura

ksnn diary » publishToMixi - 1 views

  •  
    Indian Escorts Pakistani Escorts Russian Escorts Indian Pakistani Escorts in Dubai Cheapest Escorts in Bur Dubai Indian Escort in Bur Dubai Pakistani Escort in Deira Dubai Dubai Call Girls Vip Escorts Sexy Model Call Girls Escorts In Dubai
Toshiro Shimura

ksnn diary » Blog Archive » publishToMixi : WordPress から mixi へ投稿するプラグイン v... - 0 views

  • 前バージョン(ver1.0)を作ったときからどうしても欲しかったイメージの同時投稿の機能を、ようやく実装することができました。投稿の中で利用した JPEG イメージが上から順に最高3つまで、同時に Mixi に送られるようになっています。実際に自分で試してみましたが、かなりいい感じです
  •  
    [使い方] プラグインをインストールして有効にすると、投稿(Post)を入力する画面に、「Publish To Mixi」というオプションが現れるようになります。投稿するときにここをチェックすると、同じ投稿内容が Mixi にも自動的に投稿されます。Wordpress の投稿に使われたリンクなどの HTML タグはmixiに送られるときに取り除かれます。Wordpress の投稿に使われたイメージについては、JPEGイメージに限り文章の上から順に最高3つまでが同時に投稿されます。
Toshiro Shimura

yujilog - [対応中]wp-mixi-publisherのWordpress2.5への対応とMixiバージョンアップ対応 - 0 views

  • タイトルのとおり、いまさらではありますが対応中です。すでに様々な箇所でパッチなどを配布されている方もいらっしゃると思いますが、Wordpress2.5での動作実績などをお見かけしませんでしたので対応したいと思っています。 また、データの持ち方なども若干変えようかと思っておりますのでリファクタリングも行おうと思います。2008年5月中にはリリース予定ですのでもう少々お待ちください。
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 本体をインストールしてあるディレクトリ名) <変更後> <?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

PodPress in WordPress 2.6 « Andrew Ozz on WordPress - 1 views

  • Yesterday had a quick look at podPress, the premier plugin for podcasting. It has a small incompatibility with the new Post Revisions feature introduced in WordPress 2.6. PodPress seems to be in the middle of a large update. I’ve used the “experimental” version (8.9) of the plugin and emailed the proposed fix to the authors, however for the more impatient here is the patch: view plaincopy to clipboardprintfunction post_edit($post_id) {      GLOBAL $post;      if($this->justposted) {          return;      }      $this->justposted = true;        if ( isset($_POST['post_ID']) && (int) $_POST['post_ID'] )          $post_id = (int) $_POST['post_ID'];        $this->settings_item_save($post_id, $_POST);  }   function post_edit($post_id) { GLOBAL $post; if($this->justposted) { return; } $this->justposted = true; if ( isset($_POST['post_ID']) && (int) $_POST['post_ID'] ) $post_id = (int) $_POST['post_ID']; $this->settings_item_save($post_id, $_POST); } It goes in podpress/podpress_admin_class.php, around line 51. What it does is to make sure the custom post meta fields used by podPress are attached to the actual Post, not one of the revisions.
Toshiro Shimura

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

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

DBS>Interactive | WordPress Function List - 0 views

  • The content was reformatted for quick reference from the Template Tag section of the WordPress.org Codex, a relative encyclopedia to WordPress theming, and great reference for your WordPress questions.
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->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.
Toshiro Shimura

脆弱性も修正したもよう:ブログソフトの「WordPress」が新版をリリース - ITmedia エンタープライズ - 0 views

  • WordPress 2.6では約194件のバグが修正したが、US-CERTによればこの中にはセキュリティ関連の問題が含まれている可能性がある。WordPressをめぐっては、6月末に起きたインターネットドメイン管理組織ICANNのサイト乗っ取りに関連して、ICANNはWordPressの脆弱性を突いてブログが攻撃を受けたと報告している。
Toshiro Shimura

WordPress Plugins/JSeries » Ktai Entry (メール投稿プラグイン) - 0 views

  • Ktai Entry は、携帯電話・PHS 等から WordPress に投稿できるメール投稿用プラグインです。いわゆる「モブログ」ができます。 投稿の反映にはウェブブラウザーが不要なので、メール送信ができればキャリアおよび機種を問いません。 カテゴリー指定 (複数カテゴリーに対応) およびキーワードタグの付与が可能です。 投稿スラッグ、投稿ステータスの指定が可能です。 投稿日時を指定できます。日時を直接指定する方法と、添付する画像の撮影日時を投稿日時にする指定方法の2種類があります。 画像を添付したメールに対応しています。画像を回転したり、大きい画像をサムネール化することが可能です。 画像は WordPress のファイルアップロード/メディアライブラリに格納されます。 絵文字投稿に対応しています。au, ウィルコム、ドコモ、ソフトバンクの絵文字を認識し、Ktai Style の絵文字フォーマット (<img localsrc=”NNN” />) で保存されます。Ktai Style を併用すれば絵文字が表示されます。なお、PC の場合は、iモード絵文字とそれに類似した絵文字のみ画像表示され、それ以外は代替文字での表示になります。
Toshiro Shimura

WordPress › Post Thumb Revisited « WordPress Plugins - 0 views

  • All thumbnails are dynamically created when needed and then saved. So, there is no complex thumbnail management. The nice Highslide javascript library is included in the plugin and used if desired. It adds nice expansion effect to each link/thumbnail created by post-thumb revisited. So, Post-Thumb revisited is a thumbnail management system. Install the plugin, and then, you can add a thumbnail display in the Loop by a simple function: <?php the_thumb(); ?> This will show the thumbnail of the first picture in the post for each post in the Loop.
Toshiro Shimura

Post Thumbs plugin - The Blemish - 0 views

  • Haven’t you ever wanted to list most popular posts by a 50×50 thumbnail instead of just text? If you have an image from your server in your post content, this plugin will scan for it and convert it to a thumbnail for you to use. Note that the image must reside on your site. Currently it cannot grab images from a different domain (unless you modify it).
1 - 20 of 137 Next › Last »
Showing 20 items per page