4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPressからHTMLファイルに記事を投稿する

Last updated at Posted at 2017-12-11

#WordPressから静的ファイルに記事を投稿する

WordPressからHTMLファイルにどうしても記事を投稿したかったので
その手順を忘れないようメモ。。。

  • WordPressの一般設定を変更

一般設定.png

  • 対象のHTMLファイルの1行目に下記の内容を記載
<?php require '../../wp/wp-blog-header.php'; ?>
  • 記事を載せたい部分に下記のソースを記載
<ul>
<?php
$posts = get_posts("numberposts=5&category=&orderby=post_date&offset=0");
foreach ($posts as $post):
setup_postdata($post);
?>
<li>
<?php the_time('Y.m.d') ?>
<a href="<?php the_permalink() ?>"><?php the_title() ?><?php the_post_thumbnail('thumbnail'); ?></a>
<?php echo mb_substr(get_the_excerpt(), 0, 30); echo '...' ; ?>
</li>
<?php endforeach; ?>
</ul>
  • WordPressから通常の手順で記事を投稿

この手順で無事にHTMLファイルに記事を投稿することが出来ました。

以上

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?