如何在WordPress上制作自定义表格?

时间:2019-06-10 06:14:16

标签: wordpress

我是WordPress的初学者。

我想在WordPress中添加新的表单功能。

我想创建一个规定以使用此表单添加成员。

任何人对此主题都有想法,请告诉我下一步需要研究什么?

2 个答案:

答案 0 :(得分:1)

作为初学者或高级用户/开发人员,您可能会使用插件来完成此操作,包括创建用户。

在Internet上搜索WordPress表单插件,您会发现很多不错的插件。

https://www.wpbeginner.com/plugins/5-best-contact-form-plugins-for-wordpress-compared/

答案 1 :(得分:0)

您可以在WP中使用自定义帖子类型

请参考此链接 https://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/

尝试以下代码

// Our custom post type function
function create_posttype() {

    register_post_type( 'Members',
    // CPT Options
        array(
            'labels' => array(
                'name' => __( 'Members' ),
                'singular_name' => __( 'Members' )
            ),
            'public' => true,
            'has_archive' => true,
            'rewrite' => array('slug' => 'Members'),
        )
    );
    }
    // Hooking up our function to theme setup
    add_action( 'init', 'create_posttype' );

它将在WP admin中创建一个名为“成员”的菜单。

您可以添加所需的详细信息。

要检索

$args = array( 'post_type' => 'Members', 'posts_per_page' => 10 );
$the_query = new WP_Query( $args ); 

// loop the data
while (have_posts()) : the_post(); 
    the_permalink(); // for the link to the post
    the_title(); // to display the title
    get_the_excerpt(); // details you entered
   endwhile;