Hello WP-community!
I'm trying to create a template without a search form and without the link that says "Edit this Entry". So, i created a very simple page template such as the following...
<?php
/*
Template Name: portfolio
*/
?>
<?php get_header(); ?>
<div id="content">
<h1>Portfolio</h1>
</div>
<?php get_footer(); ?>
...and I selected it as a template from the Admin. But when I bring it up on the browser such as http://www.some-web-page.com/portfolio, the new page includes a Search form and the link "Edit this entry"! How was this included?!
The answer must be very simple. Thank You!
-Byron