1
私はこのサイトまたは他のウェブサイトで与えられたすべてのソリューションを試しましたが、カスタムフィールド支払いパッケージに従って投稿を並べ替えることに成功しませんでした。私はコードの下にしようとしたWordpressカスタムフィールドに基づいて投稿を並べ替える方法
$args = array('meta_key'=>'et_payment_package','meta_key'=>693);
// Variable to call WP_Query.
$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
// Start the Loop
while ($the_query->have_posts()) : $the_query->the_post();
the_title();
the_excerpt();
// End the Loop
endwhile;
else:
// If no posts match this query, output this text.
_e('Sorry, no posts matched your criteria.', 'textdomain');
endif;
wp_reset_postdata();
それは
申し訳示し、投稿はあなたの基準にマッチしません。
誤って申し訳ありません。meta_valueの代わりにmeta_keyが入力されています。あなたの回答をありがとうございます。 – ashyam
ご回答いただきありがとうございますが、エラーメッセージは表示されませんが、投稿順に変更はありません。実際には、無料、特集などのように選択したパッケージに従って投稿を表示したいと考えています。 – ashyam
投稿 - これはカスタム投稿タイプですか、それはプラグインかテーマですか? Woocommerceまたは? –