انجمن


مشکل با پوسته ی Aspire  (۷ نوشته)

  • آزاد

    آفلاین
    عضو
    تعداد نوشته‌ها: ۷۱۷
    تشکر شده: ۲۲۳ بار
    # نوشته شده: ۱۶ سال پیش
    ۳۰ بهمن ۱۳۸۶ - ۰۰:۲۴

    با سلام
    من پوسته ی aspire که توسط بهرنگ یار احمدی به فارسی شده بود رو دانلود کردم
    ولی وقتی از این پوسته استفاده می کنم این خطا را در صفحه ی اول می دهد
    Fatal error: Call to undefined function: the_title_attribute() in /home/*****/public_html/wp-content/themes/Aspire/index.php
    on line 15
    -------------------------------------------------------------------------------------
    متاسفانه الان سایت آقای بهرنگ یار احمدی خراب است .
    ولی پوسته ی انگلیسی آن به آدرس زیر قابل مشاهد است :
    http://www.infocreek.com/webdesign/aspire.html
    ------------------------------------------------------------------------------------
    من کدهای درون اندیکس را در اینجا قرار می دهم :

    <?php get_header(); ?>
    
    <div id="content">
    	<div id="main">
    		<div class="content"><div class="cont-r"><div class="cont-l"><div class="cont-bot">
    			<div class="grad-hack"><div class="begin"></div>
    
    	<?php if (have_posts()) : ?>
    <?php $postnumber = '1' ?>
    		<?php while (have_posts()) : the_post(); ?>
    
    				<div class="post<?php if($postnumber == '1') echo $postnumber; $postnumber++; ?>" id="post-<?php the_ID(); ?>">
    					<div class="title">
    						<div class="date"><?php the_time('j') ?><div class="month"><?php the_time('M') ?></div></div>
    						<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
    						<p class="author"><?php edit_post_link('Edit', ' | ', ' | '); ?>&nbsp;&nbsp;&nbsp;Posted by: <?php the_author() ?>&nbsp;&nbsp;&nbsp;in <?php the_category(', ') ?></p>
    					</div>
    					<div class="entry">
    
    						<?php if (function_exists('the_excerpt_reloaded'))
    							the_excerpt_reloaded(145, '<a><img>', 'excerpt', TRUE, 'Read the full post...');
    						else
    							the_content('Read the rest of this entry »');
    						?>
    
    					</div>
    					<div class="postmetadata"><div class="comm-num-left"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div><div class="clear"></div></div>
    				</div>
    
        <?php endwhile; ?>
    
    	<?php else : ?>
    
    				<div class="post1">
    					<h2 class="center">Not Found</h2>
    					<p class="center">Sorry, but you are looking for something that isn't here.</p>
    				</div>
    
    	<?php endif; ?>
    
    			</div>
    		</div></div></div></div>
    
    		<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
    			<div class="wp-pagenavi2"><?php next_posts_link('Previous Entries') ?><?php previous_posts_link('Next Entries') ?></div>
    		<?php } ?>
    
    	</div>
    
    	<?php get_sidebar(); ?>
    
    	<div class="clear"></div>
    </div>
    
    <?php get_footer(); ?>

    خواهشا مرا راهنمایی نمایید . با تشکر
    موفق و پیروز باشید

  • آزاد

    آفلاین
    عضو
    تعداد نوشته‌ها: ۷۱۷
    تشکر شده: ۲۲۳ بار
    # نوشته شده: ۱۶ سال پیش
    ۳۰ بهمن ۱۳۸۶ - ۰۰:۵۲

    سلام مجدد
    متاسفانه تمامی این پوسته مشکل دارد :
    خطای زیر را نیز می دهد :
    Fatal error: Call to undefined function: the_title_attribute() in /home/azad/public_html/wp-content/themes/Aspire/archive.php on line 32
    من کدهای درون پوشه ی آرشیو را در اینجا قرار می دهم

    <?php get_header(); ?>
    
    <div id="content">
    	<div id="main">
    		<div class="content"><div class="cont-r"><div class="cont-l"><div class="cont-bot">
    			<div class="grad-hack"><div class="begin"></div>
    
    	<?php if (have_posts()) : ?>
    
     	  <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
     	  <?php /* If this is a category archive */ if (is_category()) { ?>
    		<h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
     	  <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
    		<h2 class="pagetitle">Posts Tagged ‘<?php single_tag_title(); ?>’</h2>
     	  <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
    		<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
     	  <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
    		<h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
     	  <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
    		<h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
    	  <?php /* If this is an author archive */ } elseif (is_author()) { ?>
    		<h2 class="pagetitle">Author Archive</h2>
     	  <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
    		<h2 class="pagetitle">Blog Archives</h2>
     	  <?php } ?>
    <?php $postnumber = '1' ?>
    		<?php while (have_posts()) : the_post(); ?>
    
    				<div class="post<?php if($postnumber == '1') echo $postnumber; $postnumber++; ?>" id="post-<?php the_ID(); ?>">
    					<div class="title">
    						<div class="date"><?php the_time('j') ?><div class="month"><?php the_time('M') ?></div></div>
    						<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
    						<p class="author"><?php edit_post_link('Edit', ' | ', ' | '); ?>&nbsp;&nbsp;&nbsp;Posted by: <?php the_author() ?>&nbsp;&nbsp;&nbsp;in <?php the_category(', ') ?></p>
    					</div>
    					<div class="entry">
    
    						<?php if (function_exists('the_excerpt_reloaded'))
    							the_excerpt_reloaded(145, '<a><img>', 'excerpt', TRUE, 'Read the full post...');
    						else
    							the_content('Read the rest of this entry »');
    						?>
    
    					</div>
    					<div class="postmetadata"><div class="comm-num-left"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div><div class="clear"></div></div>
    				</div>
    
        <?php endwhile; ?>
    
    	<?php else : ?>
    
    				<div class="post">
    					<h2 class="center">Not Found</h2>
    					<p class="center">Sorry, but you are looking for something that isn't here.</p>
    				</div>
    
    	<?php endif; ?>
    
    			</div>
    		</div></div></div></div>
    
    		<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
    
    	</div>
    
    	<?php get_sidebar(); ?>
    
    	<div class="clear"></div>
    </div>
    
    <?php get_footer(); ?>

    --------------------------------------------------------------------------
    خطای زیر را هم می دهد :
    a href="http:/****.com/index.php/archives/93" rel="bookmark" title="Permanent Link to
    Fatal error: Call to undefined function: the_title_attribute() in /home/****/public_html/wp-content/themes/Aspire/index.php on line 15
    --------------------------------------------------------------------------

    خطای زیر را هم می دهد :
    Fatal error: Call to undefined function: the_title_attribute() in /home/azad/public_html/wp-content/themes/Aspire/single.php on line 15

    <?php get_header(); ?>
    
    <div id="content">
    	<div id="main">
    		<div class="content"><div class="cont-r"><div class="cont-l"><div class="cont-bot">
    			<div class="grad-hack"><div class="begin"></div>
    
    	<?php if (have_posts()) : ?>
    <?php $postnumber = '1' ?>
    		<?php while (have_posts()) : the_post(); ?>
    
    				<div class="post<?php if($postnumber == '1') echo $postnumber; $postnumber++; ?>" id="post-<?php the_ID(); ?>">
    					<div class="title">
    						<div class="date"><?php the_time('j') ?><div class="month"><?php the_time('M') ?></div></div>
    						<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
    						<p class="author"><?php edit_post_link('Edit', ' | ', ' | '); ?>&nbsp;&nbsp;&nbsp;Posted by: <?php the_author() ?>&nbsp;&nbsp;&nbsp;in <?php the_category(', ') ?></p>
    					</div>
    					<div class="entry">
    
    						<?php the_content('Read the rest of this entry »'); ?>
    
    						<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    						<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
    					</div>
    					<div class="ping-track">
    						This entry was posted
    						<?php /* This is commented, because it requires a little adjusting sometimes.
    							You'll need to download this plugin, and follow the instructions:
    							http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
    							/* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
    						on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
    						and is filed under <?php the_category(', ') ?>.
    						You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed.
    
    						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							/* Both Comments and Pings are open*/ ?>
    							You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
    
    						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							/* Only Pings are Open*/ ?>
    							Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
    
    						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							/* Comments are open, Pings are not*/ ?>
    							You can skip to the end and leave a response. Pinging is currently not allowed.
    
    						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							/* Neither Comments, nor Pings are open */ ?>
    							Both comments and pings are currently closed.
    						<?php } ?>
    					</div>
    				</div>
    
    				<?php comments_template(); ?>
    
        <?php endwhile; ?>
    
    	<?php else : ?>
    
    				<div class="post">
    					<h2 class="center">Not Found</h2>
    					<p class="center">Sorry, but you are looking for something that isn't here.</p>
    				</div>
    
    	<?php endif; ?>
    
    			</div>
    		</div></div></div></div>
    	</div>
    
    	<?php get_sidebar(); ?>
    
    	<div class="clear"></div>
    </div>
    
    <?php get_footer(); ?>
  • آزاد

    آفلاین
    عضو
    تعداد نوشته‌ها: ۷۱۷
    تشکر شده: ۲۲۳ بار
    # نوشته شده: ۱۶ سال پیش
    ۳۰ بهمن ۱۳۸۶ - ۰۳:۳۴

    سلام مجدد
    بی خیال این سوال شدم . این پوسته با IE مشکل داشت
    به هر حال تشکر ،
    موفق باشید

  • navid

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۲۷۱۸
    تشکر شده: ۲۹۹ بار
    # نوشته شده: ۱۶ سال پیش
    ۳۰ بهمن ۱۳۸۶ - ۰۹:۳۵

    این خط رو <?php the_title_attribute(); ?> از داخل کدهای پوستتون پاک کنید ;-)

  • بهرنگ

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۱۳۹۹
    تشکر شده: ۴۵۱ بار
    # نوشته شده: ۱۶ سال پیش
    ۱ اسفند ۱۳۸۶ - ۲۲:۵۲

    والا من فقط فایل CSS رو ارائه کردم نه کل پوسته رو!!! تازه نیمه کاری فارسی شده بود و نه کامل...

  • آزاد

    آفلاین
    عضو
    تعداد نوشته‌ها: ۷۱۷
    تشکر شده: ۲۲۳ بار
    # نوشته شده: ۱۶ سال پیش
    ۳ اسفند ۱۳۸۶ - ۰۱:۴۹

    سلام بهرنگ جان
    بله درست است . از همان آدرس که داده بودید بقیه ی فایل ها رو دانلود کردم
    فکر می کنم مشکل از خود پوسته بود
    وقتی به سایت طراحش رفتم ، خیلی ها همین مشکل را داشتند
    به هر حال تشکر
    موفق باشید

  • آزاد

    آفلاین
    عضو
    تعداد نوشته‌ها: ۷۱۷
    تشکر شده: ۲۲۳ بار
    # نوشته شده: ۱۶ سال پیش
    ۳ اسفند ۱۳۸۶ - ۰۱:۵۰

    سلام نوید جان
    تشکر از راهنمایی تان . ولی هر وقت کدها را پاک می کنم نوشته ها دو برابر بزرگ می شوند و کلا همه چیز به هم می ریزد
    فکر می کنم مشکل از خود پوسته است
    بازهم تشکر @},-

درباره‌ی این موضوع



برچسب‌ها