Mr-vAhiD-DI گفت:
شما فایل index.php رو بیزحمت اینجا میذاری...تشکر
من فایل index.php یه طراحی از قالب هست . که با استفاده از انکلود کد های مورد نظرم رو فراخوانی می کنم !
اگه کد صفحه انکس من رو می خوای باشه می زارم .
<!-- hed -->
<?php get_header(); ?>
<body>
<div class="body">
<!-- header -->
<?php include (TEMPLATEPATH . '/in/header.php'); ?>
<!-- Menu -->
<?php get_sidebar(); ?>
<!-- post -->
<?php include (TEMPLATEPATH . '/in/post.php'); ?>
</div>
</body>
</html>
من همه چیز رو تو قالب هام فراخوانی می کنم ، هیدر ، منو ، و حتی باکس پست رو هم !
من می خوام وقتی به home.php رفت بعد از اون یه کلید درست کنم که با کلیک کردن کاربر روی اون وارد سایت اصلی بشه .
اینم کد صفحه هوم
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>" />
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/mootools.js"></script>
</head>
<body>
<div class="body1">
<div class="TM-home"></div>
<div class="Artist"></div>
<div class="GH-home">
<center>
<div id="my_slideshow" class="slideshow">
<img src="<?php bloginfo('template_directory'); ?>/SL/1.jpg" />
</div>
</center>
</div>
<div class="text-box"></div>
<div class="footer"><a href="http://a/farzad/index1.php">Index</a></div>
</div>
<script type="text/javascript">
window.onload = function() { myShow = new Slideshow('my_slideshow', {hu: '<?php bloginfo('template_directory'); ?>/SL/', images: ['1.jpg','2.jpg','3.jpg','4.jpg','5.jpg','6.jpg','6.jpg'], height: 360, width: 460, type: 'combo', pan: 'rand', zoom: 'rand',}, { controller: true, hu: '<?php bloginfo('template_directory'); ?>/SL/' }) }
</script>
</body>
</html>