在插件激活(Wordpress)上添加html / PHP页面

时间:2015-08-17 12:02:37

标签: php wordpress wordpress-plugin content-management-system wordpress-theming

我正在创建我的第一个wordpress插件,它应该在激活时创建一个页面(相对较大)。

目前我可以使用以下方式创建文件:

$_p['post_title'] = $the_page_title;
        $_p['post_content'] = '<h1>PAGE CONTENT</h1>';
        $_p['post_status'] = 'publish';
        $_p['post_type'] = 'page';
        $_p['comment_status'] = 'closed';
        $_p['ping_status'] = 'closed';
        $_p['post_category'] = array(1); // the default 'Uncatrgorised'

        // Insert the post into the database
        $the_page_id = wp_insert_post( $_p );

问题是,我不能将文件的所有内容(大)作为字符串放到'post_content'索引中。我想知道是否有办法,我可以简单地:

  1. 'post_content'=&gt;链接到我的插件目录中的文件
  2. 'post_content'=&gt;调用一个函数,它将返回html内容为字符串:( [最坏情况]
  3. OR,更简单的方法来实现目标。
  4. 请帮帮我。

3 个答案:

答案 0 :(得分:1)

  

使用内容

创建插件激活页面
$page_content= 'Content of page';
$demo_page = array(
      'comment_status' => 'closed',
      'ping_status' =>  'closed' ,
      'post_author' => 1,
      'post_content' => $page_content,
      'post_date' => date('Y-m-d H:i:s'),
      'post_name' => 'page_name',//display on address bar
      'post_status' => 'publish' ,
      'post_title' => 'Page Display Name',
      'post_type' => 'page',
);  
//insert page and save the id
$demo_page_value = wp_insert_post( $demo_page, false );
//save the id in the database
update_option( 'testpage', $$demo_page_value );

答案 1 :(得分:0)

您使用和指导并阅读此链接如何创建插件和页面https://codex.wordpress.org/Creating_Options_Pages

答案 2 :(得分:0)

嗯,我为解决这个问题所做的是:

//**SECTION : 1** 
   function user_login_foo() {

    return get_login_form(); // get_login_form() function will return the html template i want to display.
}
add_shortcode('user_login', 'user_login_foo'); // created a shortcode


**// SECTION: 2**
function get_login_form()
    {
        ob_start(); ?>
        <h3><?php __('Login'); ?></h3> 
        <form action="" method="post">
            <fieldset>
                 // the login form comes here
            </fieldset>
        </form>
    <?php
    return ob_get_clean();
    }

    function validate_login_user() {
             // the login validation logic comes here
    }
    add_action('init', 'validate_login_user');

第1节:注册了一个短代码,它将调用一个函数[比如,foo1()]并返回该值。 函数foo1()调用另一个函数[比如foo2()],它返回一个干净的html表单以响应调用(调用短代码时)。

第2节:在本节中,我定义了函数foo2(),其中定义了html表单[login form]并返回到foo1()[显示它的位置]。 然后我创建了一个动作[add_action(&#39; init&#39;,&#39; validate_login_user&#39;); ]这将在初始化时调用函数validate_login_user(),在此函数内我检查了isset(METHOD [用户名])和isset(METHOD [密码]),然后执行各自的逻辑。

像这样我为激活时想要创建的每个页面创建了多个[短代码], 然后:

 **step 1:** register_activation_hook(__FILE__,'activation_plugin'); 
 **step 2:** activation_plugin(){
     '390' => [ // '390' is page id
           'post_title' => 'Page title say login',
           'post_content' => "[user_login]",
           'post_status' => 'publish',
           'post_type' => 'page',
           'comment_status' => 'closed',
           'ping_status' => 'closed',
           'post_category' => array(1)
        ],
        '391' => [
           'post_title' => 'page title 2',
           'post_content' => "[short_code2]",
           'post_status' => 'publish',
           'post_type' => 'page',
           'comment_status' => 'closed',
           'ping_status' => 'closed',
           'post_category' => array(1)
        ],
         // like this add multiple shortcodes 
   }
      // this foreach will create all the pages
      foreach ($_ as $key => $value) {
        $the_page_title = $value['post_title'];
        $the_page_name = $value['post_title'];

        // the menu entry...
        delete_option($value['post_title']);
        add_option($value['post_title'], $the_page_title, '', 'yes');
        // the slug...
        delete_option($value['post_title']);
        add_option($value['post_title'], $the_page_name, '', 'yes');
        // the id...
        delete_option($key);
        add_option($key, '0', '', 'yes');

        $the_page = get_page_by_title( $the_page_title );

        if ( ! $the_page ) {
            $the_page_id = wp_insert_post( $value );
        }
        else {
            $the_page_id = $the_page->ID;
            $the_page->post_status = 'publish';
            $the_page_id = wp_update_post( $the_page );
        }

        delete_option( $key );
        add_option( $key, $the_page_id );
    }