• 10-04-2009, 17:37:56
    #10
    selim61 adlı üyeden alıntı: mesajı görüntüle
    List All description WPMU DEV - WordPress MU plugins, themes and more eklentiyi wpmu-plugins içine atıyorsun, aşağıdaki tanımlı parametrelere göre kullanıyorsun
    mesela son kayıtlı 10 blogu listeleme için
    list_all_wpmu_blogs('10', 'name', '<p>', '</p>', 'last_created');
    eklentiyi : wpmu-plugins içine attığım zaman admin panelinden plugins bölümünden görmüyor
  • 29-05-2010, 09:20:30
    #11
    <!-- // bloglar -->
    <?php
    
    $blogs = get_last_updated();
    
    if( is_array( $blogs ) ) {
    
    	?>
    
    	<ul>
    
    	<strong>Blog Listesi</strong>
    
    	<?php foreach( $blogs as $details ) {
    
    		?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
    
    	}
    
    	?>
    
    	</ul>
    
    	<?php
    
    }
    
    ?>
    <!-- // blog bitti -->