رفتن به مطلب

مشکلاتی در پوسته


پست های پیشنهاد شده

با سلام خدمت دوستان عزیز

دوتا مشکل دارم اگه زحمتی نیست راهنماییم کنید

1: قسمتی که برگه ها رو نشون میده دسته هم اضافه شده و برداشته نمیشه ،داخل تنظیمات پوسته جایی داره واسه نمایش ندادن دسته ها ، که باز نشون میده ولی اینبار همون قسمت مینویسه "دسته ای موجود نیست"

حالا اگه راه حلی واسه برداشتنش هست لطفا راهنماییم کنید

2: تصویر شاخصی که واسه نوشته قرار میدم کوچک تر از حاشیه مشخص شده است( داخل "تنظیمات-رسانه" هم رفتم واندازه بندانگشتی رو تغییر دادم،که فرقی نکرد)

سایتwww.sarallah-mg.ir

با تشکر فراوان

لینک به ارسال

سلام.

1. برای این بخش taxonomy اضافه نکردین؟

2. فایل index.php را بررسی کنید و ببینید در تابع the_post_thumbnail چه پارامتری قرار گرفته.

لینک به ارسال

داداش حقیقت اینی که گفتی "taxonomy" رو نمیدونم چی هست :P

این تابع هم نمیدونم :D با اجازه کل ایندکس رو میزارم

تشکر


<?php get_header(); ?>

<?php if (is_archive()) $post_number = get_option('lightbright_archivenum_posts');
if (is_search()) $post_number = get_option('lightbright_searchnum_posts');
if (is_tag()) $post_number = get_option('lightbright_tagnum_posts');
if (is_category()) $post_number = get_option('lightbright_catnum_posts');
if (is_home()) $args=array(
'showposts'=>get_option('lightbright_homepage_posts'),
'paged'=>$paged,
'post_type' => array('note','photo','quote','video','customlink','audio','post')
); ?>
<?php global $query_string;
if (is_category()) query_posts($query_string . "&showposts=$post_number&paged=$paged&cat=$cat");
elseif (is_home()) query_posts($args);
elseif (is_author()) {
$qstring_array = array();
parse_str($query_string, $qstring_array);
query_posts(array('showposts' => $post_number,'paged'=>$paged,'post_type' => array('note','photo','quote','video','customlink','audio'),'author'=>$qstring_array["author"])) ; }
else query_posts($query_string . "&showposts=$post_number&paged=$paged"); ?>
<?php
if (isset($_REQUEST["post_type"])) {
$args=array(
'showposts'=> get_option('lightbright_archive_customposts'),
'paged'=>$paged,
'post_type' => $_REQUEST["post_type"]
);
query_posts($args);
}; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<?php include(TEMPLATEPATH . '/includes/entry.php'); ?>

<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<?php include(TEMPLATEPATH . '/includes/navigation.php'); ?>
<?php } ?>
<?php else : ?>
<?php include(TEMPLATEPATH . '/includes/no-results.php'); ?>
<?php endif; wp_reset_query(); ?>


</div> <!-- end #main-area -->

<?php get_sidebar(); ?>

<?php get_footer(); ?>

لینک به ارسال

اگر امکانش هست محتوایات فایل entry.php را قرار دهید.

در مورد taxonomy در انجمن جستجو کنید :)

لینک به ارسال

چشم

<?php $postType = 'text';

if('note' == $post->post_type) $postType = 'text';

if('video' == $post->post_type) $postType = 'video';

if('quote' == $post->post_type) $postType = 'quote';

if('photo' == $post->post_type) $postType = 'photo';

if('customlink' == $post->post_type) $postType = 'link';

if('audio' == $post->post_type) $postType = 'audio';

?>

<div class="entry<?php echo(" $postType"); ?>">

<div class="entry-top"></div>

<?php include(TEMPLATEPATH . '/includes/share.php'); ?>

<div class="post clearfix">

<div class="content clearfix">

<?php $custom = get_post_custom($post->ID);

$link = ''; ?>

<?php if ($postType == 'link') $link = isset($custom["customlink"][0]) ? $custom["customlink"][0] : '';

if ($link == '') $link = get_permalink(); ?>

<a href="<?php if(isset($post->post_type)) echo(get_bloginfo('url') . '?post_type=' . $post->post_type); else echo('#'); ?>" class="bubble"> </a>

<h<?php if(!is_single()) echo('2'); else echo('1'); ?> class="title"><?php if(!is_single()) echo('<a href="'. $link .'">');?><?php the_title(); ?><?php if(!is_single()) echo('</a>'); ?></h<?php if(!is_single()) echo('2'); else echo('1'); ?>>

<span class="date"><?php the_time('j F Y'); ?></span>

<div class="clear"></div>

<?php $thumb = '';

if ($postType == 'text' || $postType == 'photo') {

if ($postType == 'text') { $width = 184; $height = 184; }

if ($postType == 'photo') { $width = 445; $height = 299; }

$classtext = '';

$titletext = get_the_title();

$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,true,'thumb');

$thumb = $thumbnail["thumb"];

}; ?>

<?php if (!is_single()) { ?>

<?php if ($thumb <> '' && $postType == 'text' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="small-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="big-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php } else { ?>

<?php if (get_option('lightbright_thumbnails') == 'on') { ?>

<?php if ($thumb <> '' && $postType == 'text') { ?>

<div class="small-thumb">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo') { ?>

<div class="big-thumb">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php }; ?>

<?php }; ?>

<?php if ($postType == 'quote') { ?>

<blockquote>

<p><?php $quote = isset($custom["quote"][0]) ? $custom["quote"][0] : ''; echo $quote; ?>”</p>

<span class="quote_bg"></span>

</blockquote>

<?php }; ?>

<?php if ($postType == 'video') { ?>

<div class="video-block">

<?php $video = isset($custom["video"][0]) ? $custom["video"][0] : '';

$video_width = isset($custom["video_width"][0]) ? $custom["video_width"][0] : '424';

$video_height = isset($custom["video_height"][0]) ? $custom["video_height"][0] : '264'; ?>

<?php $video = preg_replace("/height=\"[0-9]*\"/", "height=$video_height", $video);

$video = preg_replace("/width=\"[0-9]*\"/", "width=$video_width", $video);

echo $video; ?>

</div> <!-- end .video-block -->

<?php }; ?>

<?php if ($postType == 'audio') { ?>

<?php $audio = isset($custom["audio"][0]) ? $custom["audio"][0] : ''; ?>

<div class="audio-block">

<?php $postID = $post->ID; ?>

<p id="audioplayer_<?php echo($postID); ?>">Mp3 file</p>

<script type="text/javascript">

AudioPlayer.embed("audioplayer_<?php echo $postID; ?>", {soundFile: "<?php echo $audio; ?>"});

</script>

</div> <!-- end .audio-block -->

<?php }; ?>

<?php if ($postType == 'video') echo('<div class="video-text">'); ?>

<?php if (get_option('lightbright_blog_style') == 'on' || is_single()) the_content(""); else { ?>

<p><?php truncate_post(400); ?></p>

<?php }; ?>

<?php if ($postType == 'video') echo('</div> <!-- end .video-text -->'); ?>

<?php if (is_single()) { ?>

<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','LightBright').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

<?php edit_post_link(__('Edit this page','LightBright')); ?>

<?php }; ?>

</div> <!-- end .content -->

<div class="entry-bottom-top"></div>

<div class="entry-meta clearfix">

<p class="meta"><span class="main"><?php _e('Posted by','LightBright');?> <?php the_author_posts_link(); ?>

<?php $taxonomyName = 'custom-tax';

if ($postType == 'video') $taxonomyName = 'custom-tax2';

if ($postType == 'quote') $taxonomyName = 'custom-tax3';

if ($postType == 'photo') $taxonomyName = 'custom-tax4';

if ($postType == 'customlink') $taxonomyName = 'custom-tax5';

if ($postType == 'audio') $taxonomyName = 'custom-tax6'; ?>

<?php echo get_the_term_list( $post->ID, $taxonomyName, __(' in ','LightBright'),', ' ); ?>

</span> <span class="comment-count"><?php comments_popup_link('0','1','%'); ?></span></p>

<?php if(!is_single()) { ?>

<a href="<?php the_permalink(); ?>" class="readmore"><span><?php _e('read more','LightBright'); ?></span></a>

<?php }; ?>

</div> <!-- end .entry-meta -->

</div> <!-- end .main -->

<div class="entry-bottom"></div>

</div> <!-- end .entry -->

<?php if (get_option('lightbright_468_enable') == 'on') { ?>

<?php if(get_option('lightbright_468_adsense') <> '') echo(get_option('lightbright_468_adsense'));

else { ?>

<a href="<?php echo(get_option('lightbright_468_url')); ?>"><img src="<?php echo(get_option('lightbright_468_image')); ?>" alt="468 ad" class="foursixeight" /></a>

<?php } ?>

<?php } ?>

<?php if (get_option('lightbright_show_postcomments') == 'on') comments_template('', true); ?>

لینک به ارسال

<?php $postType = 'text';

if('note' == $post->post_type) $postType = 'text';

if('video' == $post->post_type) $postType = 'video';

if('quote' == $post->post_type) $postType = 'quote';

if('photo' == $post->post_type) $postType = 'photo';

if('customlink' == $post->post_type) $postType = 'link';

if('audio' == $post->post_type) $postType = 'audio';

?>

<div class="entry<?php echo(" $postType"); ?>">

<div class="entry-top"></div>

<?php include(TEMPLATEPATH . '/includes/share.php'); ?>

<div class="post clearfix">

<div class="content clearfix">

<?php $custom = get_post_custom($post->ID);

$link = ''; ?>

<?php if ($postType == 'link') $link = isset($custom["customlink"][0]) ? $custom["customlink"][0] : '';

if ($link == '') $link = get_permalink(); ?>

<a href="<?php if(isset($post->post_type)) echo(get_bloginfo('url') . '?post_type=' . $post->post_type); else echo('#'); ?>" class="bubble"> </a>

<h<?php if(!is_single()) echo('2'); else echo('1'); ?> class="title"><?php if(!is_single()) echo('<a href="'. $link .'">');?><?php the_title(); ?><?php if(!is_single()) echo('</a>'); ?></h<?php if(!is_single()) echo('2'); else echo('1'); ?>>

<span class="date"><?php the_time('j F Y'); ?></span>

<div class="clear"></div>

<?php $thumb = '';

if ($postType == 'text' || $postType == 'photo') {

if ($postType == 'text') { $width = 184; $height = 184; }

if ($postType == 'photo') { $width = 445; $height = 299; }

$classtext = '';

$titletext = get_the_title();

$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,true,'thumb');

$thumb = $thumbnail["thumb"];

}; ?>

<?php if (!is_single()) { ?>

<?php if ($thumb <> '' && $postType == 'text' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="small-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php the_post_thumbnail( array(182,181) ); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="big-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php } else { ?>

<?php if (get_option('lightbright_thumbnails') == 'on') { ?>

<?php if ($thumb <> '' && $postType == 'text') { ?>

<div class="small-thumb">

<?php the_post_thumbnail( array(182,181) ); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo') { ?>

<div class="big-thumb">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php }; ?>

<?php }; ?>

<?php if ($postType == 'quote') { ?>

<blockquote>

<p><?php $quote = isset($custom["quote"][0]) ? $custom["quote"][0] : ''; echo $quote; ?>”</p>

<span class="quote_bg"></span>

</blockquote>

<?php }; ?>

<?php if ($postType == 'video') { ?>

<div class="video-block">

<?php $video = isset($custom["video"][0]) ? $custom["video"][0] : '';

$video_width = isset($custom["video_width"][0]) ? $custom["video_width"][0] : '424';

$video_height = isset($custom["video_height"][0]) ? $custom["video_height"][0] : '264'; ?>

<?php $video = preg_replace("/height=\"[0-9]*\"/", "height=$video_height", $video);

$video = preg_replace("/width=\"[0-9]*\"/", "width=$video_width", $video);

echo $video; ?>

</div> <!-- end .video-block -->

<?php }; ?>

<?php if ($postType == 'audio') { ?>

<?php $audio = isset($custom["audio"][0]) ? $custom["audio"][0] : ''; ?>

<div class="audio-block">

<?php $postID = $post->ID; ?>

<p id="audioplayer_<?php echo($postID); ?>">Mp3 file</p>

<script type="text/javascript">

AudioPlayer.embed("audioplayer_<?php echo $postID; ?>", {soundFile: "<?php echo $audio; ?>"});

</script>

</div> <!-- end .audio-block -->

<?php }; ?>

<?php if ($postType == 'video') echo('<div class="video-text">'); ?>

<?php if (get_option('lightbright_blog_style') == 'on' || is_single()) the_content(""); else { ?>

<p><?php truncate_post(400); ?></p>

<?php }; ?>

<?php if ($postType == 'video') echo('</div> <!-- end .video-text -->'); ?>

<?php if (is_single()) { ?>

<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','LightBright').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

<?php edit_post_link(__('Edit this page','LightBright')); ?>

<?php }; ?>

</div> <!-- end .content -->

<div class="entry-bottom-top"></div>

<div class="entry-meta clearfix">

<p class="meta"><span class="main"><?php _e('Posted by','LightBright');?> <?php the_author_posts_link(); ?>

<?php $taxonomyName = 'custom-tax';

if ($postType == 'video') $taxonomyName = 'custom-tax2';

if ($postType == 'quote') $taxonomyName = 'custom-tax3';

if ($postType == 'photo') $taxonomyName = 'custom-tax4';

if ($postType == 'customlink') $taxonomyName = 'custom-tax5';

if ($postType == 'audio') $taxonomyName = 'custom-tax6'; ?>

<?php echo get_the_term_list( $post->ID, $taxonomyName, __(' in ','LightBright'),', ' ); ?>

</span> <span class="comment-count"><?php comments_popup_link('0','1','%'); ?></span></p>

<?php if(!is_single()) { ?>

<a href="<?php the_permalink(); ?>" class="readmore"><span><?php _e('read more','LightBright'); ?></span></a>

<?php }; ?>

</div> <!-- end .entry-meta -->

</div> <!-- end .main -->

<div class="entry-bottom"></div>

</div> <!-- end .entry -->

<?php if (get_option('lightbright_468_enable') == 'on') { ?>

<?php if(get_option('lightbright_468_adsense') <> '') echo(get_option('lightbright_468_adsense'));

else { ?>

<a href="<?php echo(get_option('lightbright_468_url')); ?>"><img src="<?php echo(get_option('lightbright_468_image')); ?>" alt="468 ad" class="foursixeight" /></a>

<?php } ?>

<?php } ?>

<?php if (get_option('lightbright_show_postcomments') == 'on') comments_template('', true); ?>

1. تصاویر را مجدد بارگزاری و شاخص کنید.

2. مقدار زیر را هم به خط آخر Style.css بیفزایید:

small-thumb img{
width: 182px;
height: 181px;
}

لینک به ارسال

آقا مصطفی عزیز خیلی ممنون از پیگیریتون

کد اولیتون رو جایگزین entry.php خودم کردم

تصویر رو دوباره بارگذاری و شاخص کردم

کد دوم رو هم به خط آخر style.css اضافه کردم

تغییری ایجاد نشد

ویرایش شده توسط masoud3902
لینک به ارسال

این را تست کنید:

[longbox]<div class="entry<?php echo(" $postType"); ?>">

<div class="entry-top"></div>

<?php include(TEMPLATEPATH . '/includes/share.php'); ?>

<div class="post clearfix">

<div class="content clearfix">

<?php $custom = get_post_custom($post->ID);

$link = ''; ?>

<?php if ($postType == 'link') $link = isset($custom["customlink"][0]) ? $custom["customlink"][0] : '';

if ($link == '') $link = get_permalink(); ?>

<a href="<?php if(isset($post->post_type)) echo(get_bloginfo('url') . '?post_type=' . $post->post_type); else echo('#'); ?>" class="bubble"> </a>

<h<?php if(!is_single()) echo('2'); else echo('1'); ?> class="title"><?php if(!is_single()) echo('<a href="'. $link .'">');?><?php the_title(); ?><?php if(!is_single()) echo('</a>'); ?></h<?php if(!is_single()) echo('2'); else echo('1'); ?>>

<span class="date"><?php the_time('j F Y'); ?></span>

<div class="clear"></div>

<?php $thumb = '';

if ($postType == 'text' || $postType == 'photo') {

if ($postType == 'text') { $width = 184; $height = 184; }

if ($postType == 'photo') { $width = 445; $height = 299; }

$classtext = '';

$titletext = get_the_title();

$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,true,'thumb');

$thumb = $thumbnail["thumb"];

}; ?>

<?php if (!is_single()) { ?>

<?php if ($thumb <> '' && $postType == 'text' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="small-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php the_post_thumbnail('thumb'); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo' && get_option('lightbright_thumbnails_index') == 'on') { ?>

<div class="big-thumb">

<a href="<?php echo $thumbnail["fullpath"]; ?>" class="fancybox">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</a>

</div>

<?php }; ?>

<?php } else { ?>

<?php if (get_option('lightbright_thumbnails') == 'on') { ?>

<?php if ($thumb <> '' && $postType == 'text') { ?>

<div class="small-thumb">

<?php the_post_thumbnail('thumb'); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php if ($thumb <> '' && $postType == 'photo') { ?>

<div class="big-thumb">

<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>

<span class="overlay"></span>

</div>

<?php }; ?>

<?php }; ?>

<?php }; ?>

<?php if ($postType == 'quote') { ?>

<blockquote>

<p><?php $quote = isset($custom["quote"][0]) ? $custom["quote"][0] : ''; echo $quote; ?>”</p>

<span class="quote_bg"></span>

</blockquote>

<?php }; ?>

<?php if ($postType == 'video') { ?>

<div class="video-block">

<?php $video = isset($custom["video"][0]) ? $custom["video"][0] : '';

$video_width = isset($custom["video_width"][0]) ? $custom["video_width"][0] : '424';

$video_height = isset($custom["video_height"][0]) ? $custom["video_height"][0] : '264'; ?>

<?php $video = preg_replace("/height=\"[0-9]*\"/", "height=$video_height", $video);

$video = preg_replace("/width=\"[0-9]*\"/", "width=$video_width", $video);

echo $video; ?>

</div> <!-- end .video-block -->

<?php }; ?>

<?php if ($postType == 'audio') { ?>

<?php $audio = isset($custom["audio"][0]) ? $custom["audio"][0] : ''; ?>

<div class="audio-block">

<?php $postID = $post->ID; ?>

<p id="audioplayer_<?php echo($postID); ?>">Mp3 file</p>

<script type="text/javascript">

AudioPlayer.embed("audioplayer_<?php echo $postID; ?>", {soundFile: "<?php echo $audio; ?>"});

</script>

</div> <!-- end .audio-block -->

<?php }; ?>

<?php if ($postType == 'video') echo('<div class="video-text">'); ?>

<?php if (get_option('lightbright_blog_style') == 'on' || is_single()) the_content(""); else { ?>

<p><?php truncate_post(400); ?></p>

<?php }; ?>

<?php if ($postType == 'video') echo('</div> <!-- end .video-text -->'); ?>

<?php if (is_single()) { ?>

<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','LightBright').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

<?php edit_post_link(__('Edit this page','LightBright')); ?>

<?php }; ?>

</div> <!-- end .content -->

<div class="entry-bottom-top"></div>

<div class="entry-meta clearfix">

<p class="meta"><span class="main"><?php _e('Posted by','LightBright');?> <?php the_author_posts_link(); ?>

<?php $taxonomyName = 'custom-tax';

if ($postType == 'video') $taxonomyName = 'custom-tax2';

if ($postType == 'quote') $taxonomyName = 'custom-tax3';

if ($postType == 'photo') $taxonomyName = 'custom-tax4';

if ($postType == 'customlink') $taxonomyName = 'custom-tax5';

if ($postType == 'audio') $taxonomyName = 'custom-tax6'; ?>

<?php echo get_the_term_list( $post->ID, $taxonomyName, __(' in ','LightBright'),', ' ); ?>

</span> <span class="comment-count"><?php comments_popup_link('0','1','%'); ?></span></p>

<?php if(!is_single()) { ?>

<a href="<?php the_permalink(); ?>" class="readmore"><span><?php _e('read more','LightBright'); ?></span></a>

<?php }; ?>

</div> <!-- end .entry-meta -->

</div> <!-- end .main -->

<div class="entry-bottom"></div>

</div> <!-- end .entry -->

<?php if (get_option('lightbright_468_enable') == 'on') { ?>

<?php if(get_option('lightbright_468_adsense') <> '') echo(get_option('lightbright_468_adsense'));

else { ?>

<a href="<?php echo(get_option('lightbright_468_url')); ?>"><img src="<?php echo(get_option('lightbright_468_image')); ?>" alt="468 ad" class="foursixeight" /></a>

<?php } ?>

<?php } ?>

<?php if (get_option('lightbright_show_postcomments') == 'on') comments_template('', true); ?>

این کد را هم در functions.php پوسته قرار دهید:

if (function_exists('add_image_size'))
{
add_image_size('thumb', 182, 181, false);
}[/longbox]

اینم Css:
[html]small-thumb img{
width: 182px !important;
height: 181px !important;
}[/html]

لینک به ارسال

به گفتگو بپیوندید

هم اکنون می توانید مطلب خود را ارسال نمایید و بعداً ثبت نام کنید. اگر حساب کاربری دارید، برای ارسال با حساب کاربری خود اکنون وارد شوید .

مهمان
ارسال پاسخ به این موضوع ...

×   شما در حال چسباندن محتوایی با قالب بندی هستید.   حذف قالب بندی

  تنها استفاده از 75 اموجی مجاز می باشد.

×   لینک شما به صورت اتوماتیک جای گذاری شد.   نمایش به صورت لینک

×   محتوای قبلی شما بازگردانی شد.   پاک کردن محتوای ویرایشگر

×   شما مستقیما نمی توانید تصویر خود را قرار دهید. یا آن را اینجا بارگذاری کنید یا از یک URL قرار دهید.

×
×
  • اضافه کردن...