Posts

Showing posts with the label Wordpress Tutorial

Transfer Wordpress Site to New Hosting Server

Image
That’s all, hopefully your live site will be up and running by now. Checkout your site to make sure that every thing is working fine as expected.   If you liked this article, then please subscribe to our YouTube Channel for our video tutorials. You can also find us on Twitter and Facebook. Website : www.asterali.com  Subscribe to my Youtube channel  FB: https://www.facebook.com/asteralicreativestudio/  Twitter: https://twitter.com/asterali

Display the Last Updated Date of Your Posts in WordPress

Image
Do you want to display the last updated date of your article in your Wordpress post or page? In this article, we will show you how to easily display the last updated date of your posts in WordPress. In this tutorial you will need to add code to your Wordpress files. We recommend you to install " My Custom Functions " plugin in your Wordpress site so you don't touch your core files. 1. Add this code block of code to   My Custom Functions function wpb_last_updated_date( $content ) {         $u_time = get_the_time('U');         $u_modified_time = get_the_modified_time('U');         if ($u_modified_time >= $u_time + 86400) {                 $updated_date = get_the_modified_time('F jS, Y');                 $updated_time = get_the_modified_time('h:i a');               ...

Woocommerce : Add Product and Product Category

Image
Transform your WordPress website into a thoroughbred eCommerce store.  Learn how to  add products to start selling online. If you liked this article, then please subscribe to our YouTube Channel for our video tutorials. You can also find us on Twitter and Facebook. Website :  www.asterali.com Subscribe to my  youtube channel  FB:  https://www.facebook.com/asteralicreativestudio/ Twitter:   https://twitter.com/asterali