https://www.hukukweb.com/magaza/avuk...-web-sitesi-1/ arkadaşlar burada sepete eklenin altına almak istiyorum açıklamayı bunu nasıl yapabilirim biri yol gösterebilir mi?
<?php
get_header('blog');
spyropress_before_main_container();
?>
<div class="container">
<!--============== Blog ==============-->
<?php get_template_part( 'templates/post', 'top' ); ?>
<div class="row blog">
<div class="col-md-9">
<?php
spyropress_before_loop();
if( have_posts() ) {
while( have_posts() ) {
the_post();
spyropress_before_post();
?>
<div class="blogpost <?php if( is_sticky() )echo 'sticky-post'; ?>">
<h1 class="title"><?php the_title(); ?></h1>
<h3 class="subtitle">
<?php
if( !get_setting( 'author_disable' ) ){
echo sprintf( 'Posted by %1$s on %2$s ', get_the_author(), get_the_date( 'd m Y.' ) );
}
if( !get_setting( 'comment_disable' ) ){
comments_popup_link( '0 Comments');
}
?>
</h3>
<?php
the_content();
?>
</div>
<?php
spyropress_after_post();
}
wp_pagenavi();
comments_template( '', true );
}
else
_e( 'No post where found', 'flathost' );
spyropress_after_loop();
?>
</div>
<div class="col-md-3 sidebar">
<?php dynamic_sidebar( 'primary' ); ?>
</div>
</div>
</div>
<?php spyropress_after_main_container(); ?>
<?php get_footer(); ?>
single php dosyası bu buradan çekiyor ürün
Woocommerce ürün açıklamasını görselin sağına nasıl alırım
0
●78