HTML to WordPress
Convert HTML to WordPress theme part-2
Convert HTML to WordPress theme part-1 in this tune I start how to convert HTML to wordpress theme development. In this I going to describe more about wordpress theme development. 10. To register widget: In functions.php file: function my_custom_theme_widgets() { register_sidebar( array( 'name' => 'Widget Name', 'id' => 'widget_id', 'before_widget' => '<div class="single_sidebar fix">', 'after_widget'… Read More
HTML to WordPress
Convert HTML to WordPress theme part-1
This is first chain tune. In this tune I going to steps by step guide “How to convert a HTML template into wordpress theme”. From this tune everyone can easily convert HTML to wordpress theme 1. Index.html rename index.php 2. Must need a style.css same location in index.php and also can add screenshot.png image for… Read More
HTML to WordPress
How to General Post Query in WordPress
Welcome to all in “How to General Post Query in WordPress” tune. Today I am going to simply describe about WordPress post query. This an important thing in WordPress but very easy. <?php if(have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- Your Post Query HTML goes here --> <?php endwhile; ?> <?php endif;… Read More
HTML to WordPress
How separate php header, footer and sidebar from index
Today topics is separate php file like header as header.php footer as footer.php and sidebar as sidebar.php from index.php . You may saw that every website has same structure in every pages or template for header, footer and sidebar(sidebar can be right or left side). Header.php Header.php is that which contain header markup. A website… Read More
HTML to WordPress
How create HTML to WordPress static page
Welcome to all. In this article I am going to discussion about how convert HTML to WordPress static page than next I gradually discuss on how to WordPress theme development from HTML . Now I am going my current topics, -basically WordPress must need to file index.php and style.css. If missing index.php the theme show… Read More