Thursday 28 August 2014

Theme Convert From HTML To Wordpress

Theme Convert


//In impge,css,js files
<img src="<?php echo get_template_directory_uri(); ?>/images/logo1.png">


//While convert theme from html to wordpress.............

<?php        

$recentposts = get_posts('category=18&orderby=date&order=ASC');

    foreach ($recentposts as $post) :

    setup_postdata($post);

?>



//After that for image.....

<?php the_post_thumbnail('full');?>



//For Title..........

<?php the_title();?>


//For containt................
<?php        
        $content = get_the_content();
        $postOutput = preg_replace('/<img[^>]+./','', $content);
        echo $postOutput;
?>
//end looop............
<?php endforeach; ?>