在wordpress中显示数据库中的自定义数据到post类型

时间:2017-08-13 16:19:29

标签: php wordpress custom-post-type database-table

支持,我在wordpress中有自定义数据库表: 我们说:wp_messages表格包含字段:from, title, subject, body

类似的东西:

_____________________________________________
| from     | title   | subject   | body     |
---------------------------------------------
| JohnDoe  | Test    | Hello     | World    |
---------------------------------------------
| JaneDoe  | Test2   | Hi        | WordPress|
---------------------------------------------

现在,我想将该表中的数据显示为我创建的自定义帖子类型:

function create_post_type() {
  register_post_type( 'messages',
    array(
      'labels' => array(
        'name' => __( 'Messages' ),
        'singular_name' => __( 'Message' )
      ),
      'public' => true,
      'has_archive' => true,
      'menu_position'      => 8
    )
  );
}
add_action( 'init', 'create_post_type' );

这可能吗?请帮我。感谢!!!

2 个答案:

答案 0 :(得分:0)

我认为这是你正在寻找的东西 https://wptheming.com/2010/08/custom-metabox-for-post-type/

答案 1 :(得分:-1)

现在有一个名为DB Post Types的商业插件声称正是这样做的。引用该网站:

  

轻松使用由其他插件或外部源创建的数据库表,作为没有数据复制或同步的本机WordPress帖子类型。

我从未使用它,但屏幕截图看起来很有希望。