diff --git a/page-guidesearch.php b/page-guidesearch.php
new file mode 100644
index 0000000..9fc146b
--- /dev/null
+++ b/page-guidesearch.php
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Hello
+
+
+
+
+
+
+
+
+
+
+
diff --git a/uc-guides.php b/uc-guides.php
index 31974aa..863ab6b 100644
--- a/uc-guides.php
+++ b/uc-guides.php
@@ -68,4 +68,18 @@ function create_custom_guide_post_type(){
}
add_action( 'init', 'create_custom_guide_post_type', 0 );
+
+
+// Add Page template via plugin...
+//http://wordpress.stackexchange.com/questions/3396/create-custom-page-templates-with-plugins
+
+function wpa3396_page_template( $page_template )
+{
+ if ( is_page( 'guides-2' ) ) {
+ $page_template = dirname( __FILE__ ) . '/page-guidesearch.php';
+ }
+ return $page_template;
+}
+add_filter( 'page_template', 'wpa3396_page_template' );
+
?>
\ No newline at end of file