• 20-11-2013, 15:14:47
    #1
    Üyeliği durduruldu
    	function get_default_settings() {
    		return array(
    			  'home_description_tagline_default' => true
    			, 'description_posttype_post' => '{excerpt}'
    			, 'description_posttype_page' => ''
    			, 'description_taxonomy_category' => '{description}'
    			, 'description_taxonomy_post_tag' => '{description}'
    			, 'description_paged' => '{meta_description} - Page {num}'
    		);
    	}

    üstteki koyu renkli kırmızı bölümdeki kodla alttaki kodu değiştirebilir miyim? nasıl?


    <?php the_title(); ?>
  • 20-11-2013, 16:59:17
    #2
    , 'description_taxonomy_post_tag' => the_title()
  • 20-11-2013, 17:32:05
    #3
    Kimlik doğrulama veya yönetimden onay bekliyor.
    @google;, @Alexis;

    WordPress'de the_title fonksiyonu kullanıldığında direk ekrana basmaktadır. Diziye almak için ise şu betiği kullanmamız gerekiyor.

    get_the_title( get_the_ID() );
    Kaynak;
  • 20-11-2013, 18:32:45
    #4
    ya da
    the_title('', '', FALSE)
    Gerçi böyle çirkin görünüyor.