All pastes #2072720 Raw Edit

Miscellany

public text v1 · immutable
#2072720 ·published 2011-05-31 11:20 UTC
rendered paste body
<?php 
			  get_sidebar('top'); 
			  global $post;
			  if (have_posts()){
			  	if (art_get_option('art_single_pagination')) {
			  		// previous_post_link | next_post_link
					art_pagination(array('next_link' => art_get_previous_post_link('&laquo; %link'),'prev_link' => art_get_next_post_link('%link &raquo;')));
				}
				while (have_posts())  
				{
					the_post();
					art_post_wrapper(
						array(
								'id' => art_get_post_id(), 
								'class' => art_get_post_class(),
								//'thumbnail' => art_get_post_thumbnail(),
								'title' => art_get_meta_option($post->ID, 'art_show_post_title') ? get_the_title() : '',  
								'before' => art_get_metadata_icons('', 'header'),
								'content' => art_get_content(), // 'content' => 'My post content',
								'after' => art_get_metadata_icons('categoryıcon,tagıcon', 'footer')
						)
					);
					
				}
				
			  } else {    
				art_post_wrapper(
					array(
							'title' => __('Dosya bulunamadı', THEME_NS),
							'content' =>  '<p class="center">' 
							.__( 'Üzgünüz, dosya bulunamadı.', THEME_NS) 
							. '</p>' . "\r\n" . art_get_search()
					)
				);
			  } 
			  get_sidebar('bottom'); 
			  		
			?>