Wordpress temada ufak değişiklik yardım isteği
5
●392
- 05-08-2016, 18:22:12Wordpress minamaze temasında ana sayfaki 3 lü alana 4 lü nasıl yapabilirim ?
- 05-08-2016, 20:10:26<?phpS.SAĞLAM adlı üyeden alıntı: mesajı görüntüle
/**
* The main template file.
*
* @package ThinkUpThemes
*/
get_header(); ?>
<?php if( have_posts() ): ?>
<?php while( have_posts() ): the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>>
<?php if ( has_post_thumbnail() ) {
$column1 = ' two_fifth';
$column2 = ' three_fifth last';
} else {
$column1 = NULL;
$column2 = NULL;
} ?>
<header class="entry-header<?php echo $column1; ?>">
<?php thinkup_input_blogimage(); ?>
</header>
<div class="entry-content<?php echo $column2; ?>">
<?php think_input_blogtitle(); ?>
<?php thinkup_input_blogmeta(); ?>
<?php thinkup_input_blogtext(); ?>
</div>
<div class="clearboth"></div>
</article><!-- #post-<?php get_the_ID(); ?> -->
<?php endwhile; ?>
<?php thinkup_input_pagination(); ?>
<?php else: ?>
<?php get_template_part( 'no-results', 'archive' ); ?>
<?php endif; ?>
<?php get_footer() ?> - 10-08-2016, 03:51:41Hocam yukarda index.php dosyanızdaki kodlarınızı paylaştınız o kodlar arasındaki bu kodları
$column1 = ' two_fifth'; $column2 = ' three_fifth last';
bu kodlar ile değiştiriniz.$column1 = ' one_fourth'; $column2 = ' one_fourth last';
veya index php dosyanızın içindeki tüm kodları silin bu kodları yapıştırın.
<?php /** * The main template file. * * @package ThinkUpThemes */ get_header(); ?> <?php if( have_posts() ): ?> <?php while( have_posts() ): the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>> <?php if ( has_post_thumbnail() ) { $column1 = ' one_fourth'; $column2 = ' one_fourth last'; } else { $column1 = NULL; $column2 = NULL; } ?> <header class="entry-header<?php echo $column1; ?>"> <?php thinkup_input_blogimage(); ?> </header> <div class="entry-content<?php echo $column2; ?>"> <?php think_input_blogtitle(); ?> <?php thinkup_input_blogmeta(); ?> <?php thinkup_input_blogtext(); ?> </div> <div class="clearboth"></div> </article><!-- #post-<?php get_the_ID(); ?> --> <?php endwhile; ?> <?php thinkup_input_pagination(); ?> <?php else: ?> <?php get_template_part( 'no-results', 'archive' ); ?> <?php endif; ?> <?php get_footer() ?>temanın demosuna baktım tarayıcı üzerinden denedim sorun olmadı muhtemelen düzelecektir verdiğim kodlar ile iyi çalışmalar dilerim.
Not: Temanız aşağıdaki blokları desteklemektedir.Yukarıda yazmış olduğum alanlara aşağıdaki classların noktalarını silerek sadece isimlerini yazarak deneme yanılma ile istediğiniz blok görüntüsüne kavuşturabilirsiniz.
.one_half
.one_third
.two_third
.one_fourth
.three_fourth
.one_fifth
.two_fifth
.three_fifth
.four_fifth
.one_sixth
.five_sixth - 11-08-2016, 12:59:16denedim fakat olmadı veya ben yapamadım teamwiever üzerinden beraber deneyebilir miyiz ?
--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 12:59:16 -->-> Daha önceki mesaj 12:06:52 --
malesef yapamadım teamdan yardım eder misin
b2medya adlı üyeden alıntı: mesajı görüntüle