WordPressのオプションパネルにOptionTreeを使用しています。ページIDを取得しています。そのページIDを使用して別のページに内容を入力します。ここに私のコードです:方法:WordPressの別のページにページの内容を埋め込む
<?php
$test_input = ot_get_option('for_myapp_features');
?>
<?php $the_query = new WP_Query('page_id=$test_input'); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php endwhile;?>
助けが役に立ちます。
これを試してみましたか? 'echo get_post_field( 'post_content'、$ test_input);' –
@RaunakGuptaはい、ありがとう、コンテンツを取得し、ちょうど私もタイトルを取得する方法を教えてください? –