最近、ワードプレスのテーマでいくつかのリクエストを行う必要がありました。あなたの場合(リンクの例のように、タグを取得するよりもタイトルを取得する方が簡単です)、物事は簡単に行うことができます(推測します)。
まず、投稿を取得するための php ページを作成する必要があります。ご存じかもしれませんが、スタンドアロンの php ファイルでは wp を使用できないため、ファイル ( get_posts.phpと呼びます) は次のようになります。
<?php
// Include the file above for being able to use php stuff
// In my case this file was in a folder inside my theme ( my_theme/custom_stuff/get_posts.php ).
// According to this file position you can modify below path to achieve wp-blog-header.php from wp root folder
include( '../../../../wp-blog-header.php' );
// Get all published posts.
$list_posts = get_posts( array( 'numberposts' => -1 ) );
// Get "q" parameter from plugin
$typing = strtolower( $_GET["q"] );
//Save all titles
$list_titles = array();
foreach( $list_posts as $post ) { $list_titles[] = $post->post_title; }
// To see more about this part check search.php from example
foreach( $list_titles as $title ) {
if( strpos( strtolower( $title ), $typing ) ){
echo $title;
}
}
?>
私はあなたをよりよく助けるためにいくつかのコメントを追加しました.
簡単になりました。次のような jQuery プラグインを介してページを呼び出すだけです。
$('#yourInput').autocomplete( "path_to/get_posts.php" );