wordpress - премахване ан заглавие

ArchangelS

Registered
Как мога да си премахна заглавието на сайта в хеадера кадето е ? Нестава от админ панел - > общи , нещо нямам бутон да го редактирам нз що така . Някакъв друг начин ?
 
ArchangelS каза:
Как мога да си премахна заглавието на сайта в хеадера кадето е ? Нестава от админ панел - > общи , нещо нямам бутон да го редактирам нз що така . Някакъв друг начин ?

отваряш header.php и махаш реда дето е:

Код:
<h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
		<p><?php bloginfo('description'); ?></p>

нещо такова трябва да е.
 
Ако не стане това което е на писал санд принц дай кода на хеадер.пхп
 
Код:
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> 
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="all" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/glide.css" media="screen" />	
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/tabs.css" media="screen" />	
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/superfish.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/hoverIntent.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/glide.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/slider.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/hover.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-ui-personalized-1.5.2.packed.js"></script>

<script type="text/javascript">
	jQuery(function(){
			jQuery('ul.sf-menu').superfish();
		});
</script>


	<?php wp_get_archives('type=monthly&format=link'); ?>
	<?php //comments_popup_script(); // off by default ?>
	<?php wp_head(); ?>
</head>
<body>


<div class="wrapper">
<div id="foxmenucontainer">
	<div id="menu">
		<ul>
			<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
			<?php wp_list_pages('title_li=&depth=1&sort_column=menu_order'); ?>
		
		</ul>
	</div>		
</div>
 <div class="clear"></div>
<div id="top"> 
	<div class="blogname">
		<h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
		<h2><?php bloginfo('description'); ?></h2>
	</div>
	
</div>

<div id="cat">
	<ul class="sf-menu">
<?php wp_list_categories('sort_column=name&title_li=&depth=3'); ?>
</ul>
</div>
 <div class="clear"></div>
<div class="content">
Това кадето е между <title></title> го трия сичко , и пак е заглавието там .
 
Дай на Settings след това горе имаш Blog Title... Изтрии го и няма да имаш нищо написано в Хедъра.
 
Код:
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> 
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="all" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/glide.css" media="screen" />   
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/tabs.css" media="screen" />   
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/superfish.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/hoverIntent.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/glide.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/slider.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/hover.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-ui-personalized-1.5.2.packed.js"></script>

<script type="text/javascript">
   jQuery(function(){
         jQuery('ul.sf-menu').superfish();
      });
</script>


   <?php wp_get_archives('type=monthly&format=link'); ?>
   <?php //comments_popup_script(); // off by default ?>
   <?php wp_head(); ?>
</head>
<body>


<div class="wrapper">
<div id="foxmenucontainer">
   <div id="menu">
      <ul>
         <li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
         <?php wp_list_pages('title_li=&depth=1&sort_column=menu_order'); ?>
      
      </ul>
   </div>      
</div>
 <div class="clear"></div>
<div id="top">
 
   
</div>

<div id="cat">
   <ul class="sf-menu">
<?php wp_list_categories('sort_column=name&title_li=&depth=3'); ?>
</ul>
</div>
 <div class="clear"></div>
<div class="content">


Ето така :)
 

Back
Горе