با سلام
من پس از بارگذاری و نصب و فعال کردن افزونه
وقتی تو بلاگ میریم هنوز تاریخ ارسال شده در فوریه 8, 2013 اینجوری هستش
و فارسی نشده
مشکل از کجاست؟
با سلام
من پس از بارگذاری و نصب و فعال کردن افزونه
وقتی تو بلاگ میریم هنوز تاریخ ارسال شده در فوریه 8, 2013 اینجوری هستش
و فارسی نشده
مشکل از کجاست؟
به سورس قالب برید و دنبال کد قسمت تاریخ بگردین و با این جایگزینش کنید :
<?php the_time('j M, Y'); ?>
بعد باید برید از پیشخوان ، در منوها ، روی وردپرس فارسی کلیک میکنید و تنظیمات رو انجام میدین .
هر چی میگردم پیدا نمیکنم اصلا چیزی به اسم time
تو کدوم تم باید باشه اصولا؟
خوب اگه این تاریخ در ادامه ی یک مطلب نمایش داده میشه باید تو فایل single.php بگردین و یا اگه صفحه ی اصلی باشه در index.php
عبارت فارسی قبل از اون رو جستجو کنید شاید پیدا شد !
نگاه کنید اینجا میلادی نشون میده تاریخ رو بعد از انتشار ولی موقع نوشتن گوشه سمت راست شمسی نشون میده
http://behkif.rgig.ir/?p=23
ابتدا تنظیمات جلالی رو انجام بدین سپس کدی که گفتم رو جایگزین کنید .
یا محتویات فایل single.php رو بزارید تا درست کنیم .
<?php
/**
* The Template for displaying all single posts.
*
* @package web2feel
* @since web2feel 1.0
*/
get_header(); ?>
<div id="primary" class="content-area grid_9">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php web2feel_content_nav( 'nav-below' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template( '', true );
?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
این single.php بود
این پاییینی هم index
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package web2feel
* @since web2feel 1.0
*/
get_header(); ?>
<div id="primary" class="content-area grid_9">
<div id="content" class="site-content" role="main">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
?>
<?php endwhile; ?>
<?php kriesi_pagination(); ?>
<?php elseif ( current_user_can( 'edit_posts' ) ) : ?>
<?php get_template_part( 'no-results', 'index' ); ?>
<?php endif; ?>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>