PDA

توجه ! این یک نسخه آرشیو شده میباشد و در این حالت شما عکسی را مشاهده نمیکنید برای مشاهده کامل متن و عکسها بر روی لینک مقابل کلیک کنید : ویرایش قالب وردپرسی



aminxa
January 16th, 2014, 10:09
سلام
من یه قالب وردپرس دارم که سه بلوک به این صورت داره

که کد باکسش به این صورت هست اگه بخوام توی این باکس چیزی بنویسم باید کجا رو ویرایش کنم؟


<div class="boxes">

<div class="box">
<div class="box_title_01"></div>
<div class="box_body"><div class="box_grad">
<?php
$my_query = new WP_Query('showposts=1&page_id=20');
while ($my_query->have_posts()):
$my_query->the_post();
$do_not_duplicate = $post->ID;?>
<h3><?php the_title(); ?></h3>
<div class="box_text"><?php the_content(); ?></div>
<div class="more"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/more.jpg" width="93" height="30" alt="" /></a></div>
<?php endwhile; ?>
</div></div>
<div class="box_bottom"></div>
</div><!--Box 1-->

<div class="box">
<div class="box_title_02"></div>
<div class="box_body"><div class="box_grad">
<?php
$my_query = new WP_Query('showposts=1&page_id=20');
while ($my_query->have_posts()):
$my_query->the_post();
$do_not_duplicate = $post->ID;?>
<h3><?php the_title(); ?></h3>
<div class="box_text"><?php the_content(); ?></div>
<div class="more"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/more.jpg" width="93" height="30" alt="" /></a></div>
<?php endwhile; ?>
</div></div>
<div class="box_bottom"></div>
</div><!--Box 2-->

<div class="box">
<div class="box_title_03"></div>
<div class="box_body"><div class="box_grad">
<?php
$my_query = new WP_Query('showposts=1&page_id=20');
while ($my_query->have_posts()):
$my_query->the_post();
$do_not_duplicate = $post->ID;?>
<h3><?php the_title(); ?></h3>
<div class="box_text"><?php the_content(); ?></div>
<div class="more"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/more.jpg" width="93" height="30" alt="" /></a></div>
<?php endwhile; ?>
</div></div>
<div class="box_bottom"></div>
</div><!--Box 3-->

</div><!--Boxes-->

mhiizadi
January 16th, 2014, 10:34
جای
<?php the_content(); ?>
متن بنوسید
و جای
permalink
لینک بزارید

aminxa
January 16th, 2014, 10:45
ممنون اینجا رو تغییر داده بودم اما نمایش نداده بود
حتی این کد رو هم نمایش نمیده چون یه عکس هست که نوشته مشاهده متن

<div class="more"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/more.jpg" width="93" height="30" alt="" /></a></div>

Yas-Host
January 16th, 2014, 10:50
$my_query = new WP_Query('showposts=1&page_id=20');

به کد بالا دقت کنید از page ها استفاده شده و آی دی page هم 20 می باشد که باید به page مربوطه تغییر بدید.

aminxa
January 16th, 2014, 10:54
$my_query = new WP_Query('showposts=1&page_id=20');

به کد بالا دقت کنید از page ها استفاده شده و آی دی page هم 20 می باشد که باید به page مربوطه تغییر بدید.

ممنون مشکل حل شد