Starting out with Wordpress plugin development - how does a plugin add a page to Wordpress that utilizes the current theme? For instance the plugin would create a page at this URL:

http://wordpress/plugin-name/start

This page should display a form using that utilizes the current theme. At the end of the day I'm going to replace the current front-facing Wordpress login and registration mechanisms with a custom implementation.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You want to hook a function to the template_redirect action. There you can recognize the special URL(s) you want and then you can load your own template accordingly.

To make it use the existing theme, you can do similar things like a theme would, such as call get_header(), get_footer(), get_sidebar(), etc.

After you've output your page, you'll need to explicitly call exit(); to prevent the normal page output from occurring.

Note: In WordPress 3.0, a better way is to hook to the template_include filter, and have it return the file-include-path to your own template file. This doesn't require the exit();, so it's more compatible with other plugins.

link|improve this answer
feedback
    /*
      Plugin Name: WP Price Range
      Plugin URI:
      Description:
      Version: 1.0
      Author:
      Author URI:
     */

    add_action('admin_menu', 'wppricerande_menu');

    function wppricerande_menu() {

        add_menu_page('Price Range', 'Price Range', 'administrator', 'pricerange_settings', 'pricerange_listing_page');

        //create new submenus
        add_submenu_page('pricerange_settings', 'testing', 'testing', 'administrator', 'testing', 'testing');

        //call register settings function
        //add_action('admin_init', 'register_pricerange_settings');
    }

    function testing() {
        global $wpdb;
        $r = $wpdb->get_results($wpdb->prepare("
            SELECT * FROM wp_tblproduct WHERE Category !=''
        "));
        foreach ($r as $row) {
            $category_id = 0;
            //check category
            if (term_exists($row->Category, 'wpsc_product_category')) {
                $category = term_exists($row->Category, 'wpsc_product_category');
            } else {
                //insert category $parent_category
                $category = wp_insert_term($row->Category, "wpsc_product_category");
            }
            if (is_array($category)) {
                $category_id = $category['term_id'];
                $wpdb->update($wpdb->term_taxonomy, array('parent'=>0,'show_in_menu' => 1), array('term_taxonomy_id' => $category['term_taxonomy_id']));
            }
            $post_p = get_post_id_by_meta_key('_wpsc_sku', $row->Product);
            if (!empty($post_p)) {
                $parent_id = $post_p->post_id;
                wp_set_object_terms($parent_id, array(intval($category_id)), 'wpsc_product_category', TRUE);
            }
    //        print_r($category_id);
    //        echo '<br />';
    //        print_r($post_p);
    //        echo '<br />';
    //        //print_r($row->Product);
    //        exit(0);
        }
    }

function pricerange_listing_page() {
    global $wpdb;
    $msg = '';

    if ($_POST['action'] == "add_pricerange") {
        $range = $_POST['range'];
        $order = $_POST['order'];
        $wpdb->insert('tblpricerange', array('Range' => $range, 'DisplayOrder' => $order));
        $msg = 1;
        $msgt = "Price Range insearted Successfully.";
    }

    if ($_POST['action'] == "edit_pricerange") {
        echo $id = $_POST['id'];
        $edit_pricerange = $wpdb->get_results("SELECT *
FROM `tblpricerange` WHERE id=$id");
    }

    if ($_POST['action'] == "edit_post_pricerange") {

        $id = $_POST['id'];
        $range = $_POST['range'];
        $order = $_POST['order'];
        $wpdb->update('tblpricerange', array('Range' => $range, 'DisplayOrder' => $order), array('id' => $id));
        $msg = 1;
        $msgt = "Price Range Updated Successfully.";
    }

    if ($_POST['action'] == "delete_pricerange") {
        $id = $_POST['id'];
        $wpdb->query("DELETE FROM tblpricerange WHERE id=$id");
        $msg = 1;
        $msgt = "Price Range Deleted Successfully.";
    }

    if (!empty($msg)) {
        ?>
        <div id="message" class="<?php
        if ($msg > 0)
            echo "updated fade"; else
            echo "error";
        ?>"><p><?php echo $msgt ?></p></div>
    <?php } ?>
    <style type="text/css">
        table.pbladmin {border-collapse: collapse; border-spacing: 0px;}
        table.pbladmin tr.headrow td {padding: 4px 10px; background-color: #CCCCCC; font-size: 13px; font-weight: bold; border-spacing: 0px;}
        table.pbladmin tr.datarow td {padding: 4px 10px; font-size: 12px; vertical-align: top; border-bottom: 1px dotted #CCCCCC;}

        table.pbladmin {border-collapse: collapse; border-spacing: 0px; width: 100%;}
        table.pbladmin tr.headrow td {padding: 4px 10px; background-color: #CCCCCC; font-size: 13px; font-weight: bold; border-spacing: 0px;}
        table.pbladmin tr.datarow td {padding: 4px 10px; font-size: 12px; vertical-align: top; border-bottom: 1px dotted #CCCCCC;}

        div.wrap div.rightcol {float:left; width: 25%; margin: 0 0 0 20px;}
        div.wrap div.rightcol p {padding: 0px 10px; line-height: 16px;}
        div.wrap div.rightcol li {margin-left: 30px; list-style: disc; font-weight: bold;}
        div.wrap div.rightcol form {width: 120px; float: right;}

        div.wrap div.rightcol div.postbox h3 {background-color: #cccccc; padding: 10px;}
        div.wrap div.rightcol div.postbox a {color: #FF6600; font-weight: bold; text-decoration: none;}

        div.wrap div.rightcol div.featured {border-color: #333300; color: #333300; background-color: #EFEFCC; background-image: none;}
        div.wrap div.rightcol div.featured h3 {color: #333300; background-color: #AFB101; background-image: none; border-bottom-color: #333300;}


        .wrap form.update {width: 80%; margin: 10px auto; padding: 5px; background-color: #F0B2B2; border: 1px solid #CC0000; text-align: center;}
        .wrap form.update p {font-weight: bold; color: #CC0000;}



    </style>


    <div class="wrap">
        <h2>Manage Price Range </h2>
        <table class="pbladmin" width="100%">
            <tr class="headrow"><td>ID</td><td>Price Range</td><td>Display Order</td><td colspan="2">Action</td></tr>

            <?php
            global $wpdb;
            $pricerange = $wpdb->get_results("SELECT * FROM `tblpricerange` order by DisplayOrder ASC");
            foreach ($pricerange as $range_details) {
                $id = $range_details->id;
                $range = $range_details->Range;
                $order = $range_details->DisplayOrder;

                echo "<tr class='datarow'><td>$id</td><td>$range</td><td>$order</td><td><form method='post'><input type='hidden' name='action' value='delete_pricerange' /><input type='hidden' name='id' value='$id' /><input type='submit' class='button-secondary' value='Delete Price Range' /></form></td>
     <td><form method='post'><input type='hidden' name='action' value='edit_pricerange' /><input type='hidden' name='id' value='$id' />
     <input type='submit' class='button-secondary' value='Edit Price Range' /></form></td>
    </tr>";
            }
            ?>
        </table>

        <?php
        if ($_POST['action'] == "edit_pricerange") {
            foreach ($edit_pricerange as $edit_row) {
                $id = $edit_row->id;
                $range = $edit_row->Range;
                $order = $edit_row->DisplayOrder;
            }
            ?>
            <div id="editpricerange" style="padding: 10px;">
                <h3>Edit Price Range</h3>
                <form method="post"><input type="hidden" name="action" value="edit_post_pricerange" />
                    <table class="form-table">
                        <tr valign="top">
                            <th scope="row"><strong>Range</strong></th>
                            <td><input type="text" name="range" value="<?php echo $range; ?>" size="56" /></td>
                        </tr>

                        <tr valign="top">
                            <th scope="row"><strong>Display Order</strong></th>
                            <td><textarea name="order" cols="50" rows="2"><?php echo $order; ?></textarea></td>
                        </tr>

                    </table>

                    <p class="submit">
                        <input type="hidden" name="id" value="<?php echo $id; ?>" />
                        <input type="submit" class="button-primary" value="Update Price Range" /> <input name="cancel" type="button" value="Cancel" onclick="location.href='<?php echo home_url('/wp-admin/admin.php?page=pricerange_settings') ?>';" /> 
                    </p>

                </form>
            </div>  
            <script type="text/javascript">
                jQuery(document).ready(function($){
                    (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]}})(jQuery);


                    var $elem = $('#editpricerange');
                    $('html, body').animate({scrollTop: $elem.height()+1500}, 800);
                    $elem.stop().animate({backgroundColor:'#FCFFE6'}, 500)
                    .stop().animate({backgroundColor:'#FCFFE6'}, 100);

                });
            </script>


    <?php } else { ?>

            <h3>Create A New Price Range</h3>
            <form method="post"><input type="hidden" name="action" value="add_pricerange" />
                <table class="form-table">
                    <tr valign="top">
                        <th scope="row"><strong>Range</strong></th>
                        <td><input type="text" name="range" value="" size="56" /></td>
                    </tr>

                    <tr valign="top">
                        <th scope="row"><strong>Display Order</strong></th>
                        <td><input type="text" name="order" value="" size="56" /></td>
                    </tr>

                </table>

                <p class="submit">
                    <input type="submit" class="button-primary" value="Create Price Range" />
                </p>

            </form>
        </div>
        <?php
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.