• 10-06-2009, 15:49:15
    #1
    Eposta Aktivasyonu Gerekmekte
    Arkadaşlar The Stars temasında sağ üst tarafa contact ve privacy policy koymak istiyorum.Bunu nasıl yapabilirim
    Sayfa olarak hazır da oraya başlık nasıl verebilirim?
    header.php den düzenleme yapılacaksa kodlar aşağıda.teşekkürler

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>>
    <head profile="http://gmpg.org/xfn/11">
    	<title><?php wp_title( '-', true, 'right' ); echo wp_specialchars( get_bloginfo('name'), 1 ) ?></title>
    	<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
    	<meta name="author" content="WP Box" />
    <?php  // solves google duplicate content problem
    if ( ( is_single() || is_page() || is_home() ) && ( !is_paged() ) ) {
    	echo '<meta name="robots" content="index, follow" />' . "\n";
    } else {
    	echo '<meta name="robots" content="noindex, follow" />' . "\n";
    }
    ?>
    	<?php wp_head() // For plugins ?>
    	<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
    	<link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'wpbx' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    	<link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'wpbx' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    	<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
    	<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/jquery.js"></script>
    	<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/custom.js"></script>
    	<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/featuredcontentglider.js"></script>
    	<!--[if lte IE 6]><script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/scripts/supersleight.js"></script><![endif]-->
    	<script type="text/javascript">
    	featuredcontentglider.init({
    		gliderid: "headline-content",
    		contentclass: "glidecontent",
    		togglerid: "teaser",
    		remotecontent: "",
    		selected: 0,
    		persiststate: false,
    		speed: 500,
    		direction: "leftright",
    		autorotate: true,
    		autorotateconfig: [5000, 5]
    	})
    	</script>
    <?php if (is_singular()) wp_enqueue_script('comment-reply'); wp_head(); ?>
    </head>
    <body class="<?php wpbx_body_class() ?>">
    <div id="top">
    	<div class="pads clearfix">
    		<ul>
    			<li id="t-search"><div class="hide"><?php include (TEMPLATEPATH . '/searchform.php'); ?></div></li>
    			<li><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe to Posts"><?php _e( 'Subscribe', 'wpbx' ); ?></a></li>
    			<li><a href="#" onclick="javascript:CreateBookmarkLink('<?php echo get_the_title(); ?>', '<?php echo get_bloginfo('url') ?>');" title="Add us to your browser bookmarks" rel="nofollow"><?php _e( 'Bookmark', 'wpbx' ); ?></a></li>
    		</ul>
    	</div>
    </div>
    <div id="header">
    	<div class="pads clearfix">
    		<a href="<?php echo get_settings('home'); ?>"><img id="site-logo" src="<?php bloginfo('template_directory'); ?>/images/logo-star.png" alt="<?php bloginfo('name'); ?>" /></a>
    		<div id="ad468x60" class="adblock">
    			<?php include (TEMPLATEPATH . '/ads/ads-468x60.php'); ?>
    		</div>
    	</div>
    </div><!--  #header -->
    <div id="menu">
    	<div class="pads">
    		<ul id="nav" class="clearfix">
    			<li class="<?php if (((is_home()) && !(is_paged())) or (is_archive() && !(is_category())) or (is_single()) or (is_paged()) or (is_search())) { ?>current-cat<?php } else { ?>cat-item<?php } ?>"><a href="<?php echo get_settings('home'); ?>"><?php _e( 'Home', 'wpbx' ) ?></a></li>
    			<!-- change "depth=3" to suit your menu depth level, and change "exclude=x" with the category ID that you want exclude from the menu (multiple categories separated by , (comma) -->
    			<?php wp_list_categories('orderby=ID&order=ASC&depth=3&title_li=&exclude='); ?>
    			<li id="m-subscribe"><a href="http://feeds.feedburner.com/YOURFEEDBURNERUSERNAME"><img src="http://feeds.feedburner.com/~fc/YOURFEEDBURNERUSERNAME?bg=e33258&amp;fg=ffffff&amp;anim=0" height="26" width="88" style="border:0" alt="" /></a></li>
    		</ul>
    	</div>
    </div>
    <div id="container">
    	<div class="pads clearfix">
  • 10-06-2009, 16:22:06
    #2
    <li><a href="#" onclick="javascript:CreateBookmarkLink('<?php echo get_the_title(); ?>', '<?php echo get_bloginfo('url') ?>');" title="Add us to your browser bookmarks" rel="nofollow"><?php _e( 'Bookmark', 'wpbx' ); ?></a></li>
    kodunun altına aşağıdaki şekilde ekleme yapabilirsiniz. En kolayı bu
    <li><a href="http://www.siteadi.com/contactsayfaadresi" title="">Contact</a></li>
    <li><a href="http://www.siteadi.com/pravicysayfaadresi" title="">Pravicy Policy</a></li>
  • 10-06-2009, 16:58:59
    #3
    Eposta Aktivasyonu Gerekmekte
    çok teşekkür ederim....