ورود

توجه ! این یک نسخه آرشیو شده میباشد و در این حالت شما عکسی را مشاهده نمیکنید برای مشاهده کامل متن و عکسها بر روی لینک مقابل کلیک کنید : فایل page.php رو چه جوری ویرایش کنم؟



alirad
September 28th, 2016, 04:34
دوستان من میخوام موقعی که توی وردپرس برگه ایجاد میکنم و عنوان برگه رو داخل کادر عنوان مینویسم.این عنوان اتومات بره داخل تگ h1.برای این کار باید داخل فایل page.php تغییر بدم؟فایلو اینجا گذاشتم باید چکار کنم؟ در ضمن مدل قالب من جوریه که عنوان رو موقع نمایش برگه در سایت نمایش نمیده


یه سوال دیگه کد breadcrumbs افزونه yoast رو میخوام در بالای page title در فایل page.php و single.php وارد کنم اینم یه راهنمایی کنید ممنون میشم.هردوفایلو اینجا گذاشتم

فایل page.php

<?php get_header(); ?> <section id="content"> <div class="container"> <div class="single_left"> <div class="single_post_cont"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="single_inside_content"> <?php the_content(); ?> </div><!--//single_inside_content--> <br /><br /> <?php //comments_template(); ?> <!--<div class="next_prev_cont"> <div class="left"> <?php previous_post_link('%link', '<i>Previous post</i><br />%title'); ?> </div> <div class="right"> <?php next_post_link('%link', '<i>Next post</i><br />%title'); ?> </div> <div class="clear"></div> </div>--><!--//next_prev_cont--> <?php endwhile; else: ?> <h3>Sorry, no posts matched your criteria.</h3> <?php endif; ?> </div><!--//single_post_cont--> </div><!--//single_left--> <?php get_sidebar(); ?> <div class="clear"></div> </div><!--//container--></section><!--//content--><?php get_footer(); ?>

فایل single.php

<?php get_header(); ?> <section id="content"> <div class="container"> <div class="single_left"> <div class="single_post_cont"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1 class="single_title"><?php the_title(); ?></h1> <div class="single_inside_content"> <?php the_content(); ?> </div><!--//single_inside_content--> <br /><br /> <?php comments_template(); ?> <?php endwhile; else: ?> <h3>Sorry, no posts matched your criteria.</h3> <?php endif; ?> </div><!--//single_post_cont--> </div><!--//single_left--> <?php get_sidebar(); ?> <div class="clear"></div> </div><!--//container--></section><!--//content--><?php get_footer(); ?>

alirad
September 30th, 2016, 01:02
دوستان سوالمو جواب میدین

Reza G
September 30th, 2016, 01:06
خب الان هم داخل تگ h1 باید باشه:


<h1 class="single_title"><?php the_title(); ?></h1>

این کد رو در قسمت page.php بذارید.


<?php get_header(); ?> <section id="content">
<div class="container">
<div class="single_left">
<div class="single_post_cont">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="single_title"><?php the_title(); ?></h1>
<div class="single_inside_content">
<?php the_content(); ?>
</div>
<!--//single_inside_content-->
<br />
<br />
<?php //comments_template(); ?>
<!--<div class="next_prev_cont"> <div class="left"> <?php previous_post_link('%link', '<i>Previous post</i><br />%title'); ?> </div> <div class="right"> <?php next_post_link('%link', '<i>Next post</i><br />%title'); ?> </div> <div class="clear"></div> </div>-->
<!--//next_prev_cont-->
<?php endwhile; else: ?>
<h3>Sorry, no posts matched your criteria.</h3>
<?php endif; ?>
</div>
<!--//single_post_cont-->
</div>
<!--//single_left-->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div>
<!--//container-->
</section>
<!--//content-->
<?php get_footer(); ?>