In this screencast we will output comments and comment form in post template. First of all we need to create template for site pages and for blog posts. For list comment output we will use get_comments() wp function. This function returns list comments object, which...
Tutorials
WordPress. Create theme. Widgets
In today video we will discuss how to redefine template of standard wordpress widget. First of all we will redefine the widget on the basis of the existing one. All standards wordpress widgets store in /wp-includes/widgets folder. Widget is class, which inherits form...
WordPress. Create theme. Search form
Today we will realize sidebar output with widgets and customize search form based on our design we've chosen To print sidebar first of all we need to register it. For this purpose we will use register_sidebar() function. After this we need to add register sidebar...
WordPress. Posts loop
Today we will print posts of our blogs in our theme template. For this purpose we will use some wordpress functions. For posts output: have_posts() - checks, if there are some posts for output. the_post() - loop counter the_title() - print post title the_content() -...
WordPress. Create theme. Print menu in template
In last lesson we crated file structure and included css and js files for our Wordpress theme. Today we will consider capability creating and printing menu in our theme If you had entered to admin panel after last lesson, you noticed, there were no any capability to...
WordPress. Create theme. Header and footer
In last lesson we began to create our own template. Today we create common parts for every site page - header and footer Header and footer code are situated in header.php and footer.php. Its code includes in index.php with get_header() and get_footer() functions....
WordPress. Create theme
In last lessons we have been discussing basics with Wordpress. From today lesson we will creating our first the simplest theme for Wordpress. First of all, I noticed, that I focus on wordpress theme creating documentation. All wordpress themes store on the server by...
Summary of plugins for e-commerce on WordPress
Today we will install alternately two e-commerce plugins for Wordpress WooCommerce and WP e-commerce WooCommerce is the most popular decision for e-commerce sites on Wordpress. It has got a rich functionality and also a lot of different add-ons for extending...
WordPress administration panel
In last lesson we installed CMS Wordpress. Today we will consider capabilities and settings of wordpress administration panel. Administration panel lets you to manage your site content, structure and other settings of your site. You don't need to have any special...