サイト内に2つWordpressを設置しており、片方のwpのトップページに別Wordpressの任意のカテゴリーの記事を表示したいと考えています。
まずfunctions.phpに以下を記入しました。
/*DB設定を行います。*/ $another_db_name = 'dbname'; $another_db_user = 'dbuser'; $another_db_pass = 'dbpass'; $another_db_host = 'another_host'; $another_tb_prefix = 'wp_hoge_'; $anoteher_wpdb = new wpdb($another_db_user, $another_db_pass, $another_db_name, $another_db_host); //プレフィックスの設定 $anoteher_wpdb->set_prefix($another_tb_prefix);
htmlには、以下のように記入しています。
PHP
1<?php 2 //一覧情報取得 3 $results = $anoteher_wpdb->get_results(" 4 SELECT post_title, guid, ID, post_date, post_content 5 FROM $anoteher_wpdb->posts 6 WHERE post_type = 'post' 7 AND post_status = 'publish' 8 ORDER BY post_date DESC 9 LIMIT 3 " 10 ); ?> 11 12<?php 13 //表示 14 foreach ($results as $value) { 15 $date = str_replace('-', '/', mb_substr($value->post_date, 0, 10)); 16 ?> 17 <li class="clearfix"> 18 <p class="date"><?=$date?></p> 19 <p class="title"><a href="<?=$value->guid?>" target="_blank"><?=$value->post_title?></a></p> 20 </li> 21<?php } ?>
上記で、公開済み投稿記事の全カテゴリーから最新3件が表示されます。
これを特定のカテゴリーのみ表示させるには、どのように記入すればいいでしょうか?
どうぞよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/12/15 00:23
退会済みユーザー
2016/12/15 03:30
2016/12/15 10:01