以前はvns環境にnginxを入れてみたのだが、今回の対象がテスト環境用のサーバでOBSの古いタイプのものである為に更にメモリーが少なくタイトな環境となっている
今回はバッチhtmlファイルを生成する為に、静的なページが表示できれば良いだけなので、
dhttpdを入れてみた
debian環境なので apt-get install dhttpd でok
設定等は特にない(できない)、cgiも動かせない(セキュア!?)
/var/www/ がホームディレクトリとなる
2011-07-29
2011-07-06
Wordpressでカテゴリー毎に表示
$slug = get_page($page_id)->post_name;
if ($slug=="HOGEPAGE") {
$w_cat_id=get_category_by_slug('hogehoge')->term_id;
query_posts('post_type=post&cat='.$w_cat_id);
print "<h3>HOGE NEWS</h3>";
if (have_posts()) {
print "<ul>";
while(have_posts()){
the_post();
print '<li><a href="';
the_permalink();
print "\">";
the_title();
print " (".get_the_date('Y-m-d').")";
print "</a></li>";
}
print "</ul>";
}
}
登録:
投稿 (Atom)