如何在wordpress数据库中检索已保存的数据

时间:2016-05-12 02:04:06

标签: php wordpress wordpress-plugin custom-wordpress-pages

我创建了一个带有自定义元框的自定义帖子类型,根据下面的代码,我知道它保存在prefix_postmeta上,我怎样才能获得这些数据并将其显示在页面模板上?

例如:如果我在查看此帖子时有此帖子,我将能够在此帖子的底部看到此数据:

  

标题:此帖

     

内容:lorem ipsum

     

元框中的选项:选项

任何人都知道我该怎么做?会给出想法或教程如何做到这一点? 任何建议都将是一个很大的帮助。请不要投票。谢谢你,堆栈溢出的家伙。

下面的代码是我用来保存自定义元框自定义字段的代码。

   function survey_questions_meta_save( $post_id ) {
 // Checks save status
$is_autosave = wp_is_post_autosave( $post_id );
$is_revision = wp_is_post_revision( $post_id );
$is_valid_nonce = ( isset( $_POST[ 'survey_questions_nonce' ] ) && wp_verify_nonce( $_POST[ 'survey_questions_nonce' ], basename( __FILE__ ) ) ) ? 'true' : 'false';
// Exits script depending on save status
if ( $is_autosave || $is_revision || !$is_valid_nonce ) {
    return;
}
if ( isset( $_POST[ 'option1' ] ) ) {
  update_post_meta( $post_id, 'option1', sanitize_text_field( $_POST[ 'option1' ] ) );
}
if ( isset( $_POST[ 'option2' ] ) ) {
  update_post_meta( $post_id, 'option2', sanitize_text_field( $_POST[ 'option2' ] ) );
}
if ( isset( $_POST[ 'option3' ] ) ) {
  update_post_meta( $post_id, 'option3', sanitize_text_field( $_POST[ 'option3' ] ) );
}
if ( isset( $_POST[ 'option4' ] ) ) {
  update_post_meta( $post_id, 'option4', sanitize_text_field( $_POST[ 'option4' ] ) );
}
if ( isset( $_POST[ 'option5' ] ) ) {
  update_post_meta( $post_id, 'option5', sanitize_text_field( $_POST[ 'option5' ] ) );
}
}
  add_action( 'save_post', 'survey_questions_meta_save' );

1 个答案:

答案 0 :(得分:1)

您正在寻找get_post_meta()功能。

在您的页面中,您需要检索自定义帖子ID,最好使用get_the_id()功能。

如果你在single-{cpt-name}.php,你可以创建一个简单的循环,在你内部,你可以毫无困难地拉出所有的帖子和元数据。

$post_meta = get_post_meta( get_the_ID(), 'option_name', true );

有关在Wordpress Plugin Handbook上重新发布元数据的详细信息。