Wordpress page (maknut ime)

Kada se klikne na PAGE i otvori se nova stranica pise mi velikom slovima ime tog PAGEa,kako to maknuti? ima li neki plugin?

meni ova slika nis ne predstavlja… O cemu se tu radi tocno ?

Dali ti zelis maknuti Title ili sta?

To remove the title of your page that appears on the page above the content you will need to edit the page.php file or the custom page template file you created.

Open the file from either the WordPress dashboard or on your hosting account. Instructions to do this should be in one of the above mentioned posts. Make sure to make a backup of the file you are editing to fix any mistakes! Now look for and remove the code that looks like this:

<h2><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></h2>

Save the file and look at a page that is using the page template you just edited. The title of the page should no longer appear above the content.

U mom page.php ima samo ovo:

<?php
/**
 * The template for displaying all pages.
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site will use a
 * different template.
 *
 * @package WordPress
 * @subpackage Twenty_Eleven
 * @since Twenty Eleven 1.0
 */

get_header(); ?>

		<div id="primary">
			<div id="content" role="main">

				<?php while ( have_posts() ) : the_post(); ?>

					<?php get_template_part( 'content', 'page' ); ?>

					<?php comments_template( '', true ); ?>

				<?php endwhile; // end of the loop. ?>

			</div><!-- #content -->
		</div><!-- #primary -->

<?php get_footer(); ?>

kao sto vidis koristim default wordpress temu.

Imaš u datoteci content-page.php ono što tražiš.

nasao sam hvala