[WordPress][Hack] 画像を含む記事、コメントを取り出す

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

新しいプラグインの製作途中なのですが、それに関連して見つけたテクニック、というかまぁ 俗に言う Snippet、 画像を含む記事・コメントを取り出す方法紹介します。

get_results() は WordPress のカスタム関数で mySQL のクエリを実行して取得したデータを配列に格納してくれます。この場合、 $wp_posts $wp_comments それぞれに配列として画像を含む記事をストアさせています。

PHP:
  1. $sql_wp_posts ="
  2.     SELECT ID, post_content
  3.     FROM $wpdb->posts
  4.     WHERE post_content LIKE '%src=%'
  5.     ORDER BY ID DESC
  6. ";
  7.  
  8. $sql_wp_comments ="
  9.     SELECT comment_content, comment_post_ID
  10.     FROM $wpdb->comments
  11.     WHERE comment_content LIKE '%src=%'
  12.     ORDER BY comment_post_ID DESC
  13. ";
  14.  
  15. $wp_posts = $wpdb->get_results($sql_wp_posts);
  16. $wp_comments = $wpdb->get_results($sql_wp_comments);

mySQL ちょっと解説:

SELECT のすぐ後に選択したい コラムを入力します。 この場合は、ID, post_content と comment_content, comment_post_ID
FROM の後は データベースのテーブル名。 $wpdb->post とすることで、prefixが wp_ の場合、wp_posts テーブルを、 $wpdb->comments で wp_comments テーブルを指定できます。
WHERE post_content LIKE '%src=%' :これは post_content の中から src= という文字列を含むものを探してね、という命令文。
おまけとして、 ORDER BY [colum name] DESC はきじが新しい順に表示かどうかを決めるコードです。

Share This

この記事に関連する NEWS

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

このエントリーへの Yahoogle Suggestions

Trackback this Post | Feed on comments to 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