0
0

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 3 years have passed since last update.

【Wordpress】検索フォーム設置(search.php)テンプレ

Posted at

最低限のやつです

設置用タグ

<form action="サイトのURL" method="get">
    <input name="s" type="text" placeholder="キーワードを入力"/>
    <button type="submit">検索</button>
</form>

結果用(search.php)

<?php
if (isset($_GET['s']) && empty($_GET['s'])) {
echo '検索キーワードが入力されていません'; 
} else {
echo '“' . $_GET['s'] . '”の検索結果:' . $wp_query->found_posts . '件';
} ?>
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?