Wednesday 31 January 2018

How to Send Email in WordPress using the Gmail SMTP Server

Are you having trouble sending emails from your WordPress site? One easy way to solve this is by sending WordPress emails using the Gmail SMTP server. In this article, we will show you how to send emails from your WordPress site using the Gmail SMTP server.

Send WordPress emails using Gmail SMTP server

Why and When You Need Gmail SMTP Server for WordPress Emails

Your WordPress site sends emails to notify you of new user registration, lost password reset, automatic updates, and even notifications from your contact forms.

By default, WordPress uses the PHP mail function to send out email notifications. However, this function does not work as expected due to a number of reasons.

Most WordPress hosting companies restrict usage of this function to prevent abuse and spam.

Spam filters on popular email service providers check incoming emails to monitor if they are sent from authentic mail servers. Default WordPress emails fail this check and sometimes may not even make it to the spam folder.

SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails. Unlike PHP mail function, SMTP uses proper authentication which increases email deliverability.

Gmail provides SMTP service that you can use to send out emails from your WordPress site. If you just want to send WordPress notification emails to yourself and few users on your site, then Gmail SMTP servers are the best option.

However, if you are planning on sending newsletter emails using WordPress, then you should use a mass emailing service provider, like MailGun or SendGrid.

Free vs Paid Gmail SMTP Service for WordPress

You can use your free Gmail account to send out WordPress emails. However, for better deliverability, we recommend using paid Google Apps for Work with Gmail.

With Google Apps for Work, you get your own professional branded email address such as (name@yoursite.com).

Google Apps require you to add MX records to your domain name which means that your emails will appear to be coming from your own domain name boosting authenticity and ensuring better deliverability.

We use Google Apps for Work for WPBeginner and can honestly say it’s the best.

How to Send WordPress Emails Using Gmail SMTP Server

If you decided to use Google Apps for Work, then you first need to set up your domain to work with Google Apps. We have a step by step tutorial on how to setup a professional email address with Google Apps and Gmail.

Rest of the instructions are the same whether you are using paid or free Gmail account.

First thing you need to do is install and activate the WP Mail SMTP plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Settings » WP Mail SMTP page to configure the plugin settings.

WP Mail SMTP Settings

First you need to make sure that you use your Gmail email address in the ‘From Email’ field. Next, you need to provide the sender name.

WP Mail SMTP plugin offers two ways to connect your WordPress site to the Gmail servers.

The first method uses OAuth Authentication. This is a more secure method to send emails using Gmail servers.

The second method is by entering Gmail SMTP settings manually. This method is not recommended because it is less secure.

That being said, let’s set up WordPress to use Gmail SMTP for sending emails.

Method 1: Setting up Gmail to Send WordPress Emails using OAuth Protocol

This method is recommended for all users. It is more secure and once you set it up, you’ll never have to do that again.

You need to start by selecting Gmail as your mailer and set the return path to be the same as sender.

Select Gmail and set return path

Next, you will see the option to enter your Client ID, Client Secret, and a URL in ‘Authorized redirect URI’ field.

Let’s set up these fields.

Creating an App and Generate API Keys for Gmail

Visit the Google Developers Console website and create a new project.

Create a new Google Developer Console project

If you don’t see the blue button to create a project, then you can also click on select a project drop down and create a new project.

You’ll be asked to provide a name for your project. Give it a memorable name, so that you can easily recognize it in the future.

Name your project

After that, click on the create button to continue.

Developer console will now create your project and take you to its dashboard. Google offer developers access to many of their APIs and services. You need to enable the APIs that you will be needing for this project.

Enable APIs

Click on Enable APIs and services button to continue.

This will bring you to the APIs library page. Next, you need to type Gmail in the search box to quickly find the Gmail API and click to select it.

Select Gmail API

You will now see an overview of the API and what it can do. Simply click on the ‘Enable’ button to continue.

Enale Gmail API

Now that your API is enabled, the next step is to create credentials that you can use in your WP Mail SMTP plugin settings.

Click on the create credentials button to continue.

Create credentials

On the next screen, you will need to select ‘Web browser JavaScript’ in ‘Where you’ll be calling the API from’ field. After that click on the ‘User Data’ option.

API credentials step 1

To continue, click on the ‘What credentials do I need?’ button.

You will now be asked to provide a name for your OAuth client name. You can enter ‘WP Mail SMTP’ here.

API Credentials step 2

Under JavaScript origins field, you need to add your website’s domain name. Next, you need to copy and paste the authorized redirect URL from WP Mail SMTP plugin settings.

After that click on the ‘Create client ID’ button to continue.

Next, you need to enter a name for OAuth consent screen. You can put the plugin’s name here.

Ouath consent screen

After entering the details, click on the continue button and the developer console will show your client ID. You can copy and paste this in the WP Mail SMTP plugin’s settings page. However, you will still need to add your client secret key.

Getting your client ID

Go ahead and click on the Done button to move on.

You will now be taken to your project’s credentials page. You will see your recently created credentials listed there. You need to click on the edit icon next to your credentials to continue.

Edit credentials

This will bring you to the edit credentials page where you will be able to see your client secret key. You need to copy and paste the key in your plugin’s settings page.

Client secret key

Return back to plugin’s settings page in your WordPress admin area. Now that you have both client ID and client secret keys, you need to click on the save settings button to continue.

Save client credentials in plugin settings

The plugin will now store your settings and reload the page. After that you need to scroll down to the bottom of the settings page and click on the ‘Allow plugin to send emails using your Google account’ button.

Allow plugin to send emails

This will take you to your account on Google, and you will be asked to give the website permission to send emails on your behalf.

Allow Gmail

Click on Allow button to give permissions.

After that, you will be redirected back to your website where you will see a success message.

Connected successfully

Method 2: Setting up Gmail SMTP as SMTP Sender

This method allows you to manually connect to Gmail’s SMTP servers to send your WordPress emails.

First, you need to visit Settings » WP Mail SMTP page to configure the plugin settings.

You need to start by providing the Gmail address you want to use in the From email field, and your name in the name field.

Gmail SMTP

Next, you need to select ‘Other SMTP’ as your mailer and check the box next to return path.

After that, scroll down to the Other SMTP section to configure more settings.

Gmail SMTP settings for WP Mail SMTP plugin

Here is the exact configuration you need to add in the plugin settings:

  • SMTP Host: smtp.gmail.com
  • SMTP Port: 465
  • Encryption: Use SSL encryption
  • Authentication: Turn on authentication
  • Username: Your complete Gmail address, e.g. john.smith@yourdomain.com or john.smith@gmail.com
  • Password: Password of your Gmail account

Once you are done, click on the save changes button to store your settings.

That’s all, you have successfully setup WP Mail SMTP to use Gmail SMTP servers.

Testing Your WP Mail SMTP Settings

WP Mail SMTP plugin allows you to test your email settings, so you can make sure that everything is working properly.

You need to visit Settings » WP Mail SMTP page and click on the ‘Email Test’ tab. Simply provide an email address that you can access in the send to field and click on the send email button.

Send test email

You will see a success message. You can now check your inbox to see a message with the subject line ‘WP Mail SMTP: Test Email to…’.

That’s all, you have successfully setup your WordPress site to send emails using Gmail SMTP servers.

Troubleshooting Gmail SMTP Not Working Issues

We have seen users encounter few issues when using Gmail SMTP with certain shared hosting configurations.

Take the following steps to fix the Gmail SMTP issue:

  1. Login to your cPanel account and create an email account that matches your Google apps email address. This might seem strange because you’re not using your server for emails. This step basically tricks your server into believing that you’re sending the email through the server.
  2. In your cPanel account, go to the MX Records and change the MX routing from automatic to remote. It might be a little tricky to find since each host now has custom cPanel interface. You need to look for a small link next to MX that says Email Routing: Remote Mail Exchanger.
  3. After that log back into your WordPress site and send a test email.

We hope this article helped you learn how to send email in WordPress using the Gmail SMTP server. You may also want to see our list of the 5 best contact form plugins for WordPress.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Send Email in WordPress using the Gmail SMTP Server appeared first on WPBeginner.



from WPBeginner http://ift.tt/1b7nbf2
More links is https://mwktutor.com

DigitalOcean Promo Code: Claim Free Credits

Planning to sign up for DigitalOcean and looking for promo code? Here is one that will give you $10 for you to use for your droplets: Click here to get Digital Ocean free credits

If you want to learn more about DigitalOcean, read on.

DigitalOcean Promo code: $10 Coupon

Here at ShoutMeLoud, we discover new products and share them with you to make life easier. At times, when we find a deal worth sharing, we do that in our deals section. Today, I’m sharing a $10 promo code for DigitalOcean. DigitalOcean, also popularly known as DO in the hosting community, is an easy-to-use cloud computing platform of virtual servers (Droplets) and object storage ( Spaces). For those planning to setup a server of their own and need an unmanaged server, DigitalOcean is indeed the best option.

Designed for developers, DigitalOcean helps you to quickly scale up your server when you need more resources. I use DO for hosting the ShoutMeLoud forum which is powered by Discourse. At the time of writing this special deal article for DigitalOcean, I’m running 3 droplets. Think of them as 3 different VPS.

Digital-Ocean-Droplets-promo-code

You can create as many instances as you want with one account and you can use add-ons like RAM, Space or even scale up your server (Droplets) to the next tier quickly. DigitalOcean has indeed changed the landscape of unmanaged VPS. What more, creating an account is absolutely free! See the screenshot below for reference.

Digitalocean-discount

Even if you take advantage of this deal right now, you don’t need to pay a penny unless you create a droplet (VPS). If you sign up directly, you will miss out on the free $10 credits. To enjoy this promo, you need to sign up with the special link here.

If you are looking for a managed WordPress hosting or server, check out these deals:

Subscribe on Youtube

DigitalOcean Promo Code: Claim Free Credits is a post from ShoutMeLoud - Shouters Who Inspires



from ShoutMeLoud http://ift.tt/2noFn32
More View at https://mwktutor.com

Tuesday 30 January 2018

5 Best WordPress Appointment and Booking Plugins

Do you want to allow your customers to book an appointment directly from your WordPress site? Many businesses need an appointment booking form which allows customers to easily book an appointment online. In this article, we will show you the best WordPress appointment and booking plugins.

Best WordPress appointment and booking plugins

What Kind of Appointment and Booking Form Plugin To Choose?

You may want to customize your appointment booking form to meet your business requirements. However, there are few common things that you should look for in your WordPress booking form plugin.

Your appointment booking form should be able to accept customer requests for available time slots divided into your business hours.

It should work on mobile phones, so that your customers can easily book appointments from their phones as well as computers.

A good appointment booking form will save appointments in your WordPress database or a calendar app like Google Calendar. You may also want to send an automatic email notification to customers once their booking is accepted.

That being said, let’s take a look at the best appointment and booking plugins that you can use on your WordPress site.

1. BirchPress

BirchPress

BirchPress is a comprehensive WordPress booking plugin. It allows you to add a professional online booking management system into your WordPress site. Your users can book appointments from your website and pay for it using their PayPal account or credit card.

BirchPress syncs your booking calendar with your other calendars such as Google Calendar, iCal, Android, Outlook, etc. It has a customizable email notification and reminder system to keep you, and your clients informed about the booking.

2. Booking Calendar

Booking Calendar

Booking Calendar is one of the best free WordPress booking plugins in the market. It is simple, easy to use, and well documented. It comes with a calendar view for both you and your website visitors. You can easily add your booking / appointment form into any WordPress post or page.

While it is simple enough for beginners, it is also very powerful and includes a whole range of options that can be configured from the plugin’s settings page. It comes with built-in captcha to prevent spam, email notifications, jQuery effects, and more. You can even customize the booking form with your own custom fields.

3. WP Simple Booking Calendar

WP Simple Booking Calendar

WP Simple Booking Calendar is another straightforward WordPress booking plugin. Simply create a calendar and then add it to a post or page using the shortcode. It only allows users to book an entire day. This means there are no hourly time slots.

If you were looking for something very simple and basic for rooms, accommodation, or other per day offerings, then this plugin will do the job. For more complex items, look at the plugins we mentioned above.

4. Easy Appointments

Easy Appointments

Easy Appointments is a flexible and free WordPress appointment booking plugin. It allows you to easily add multiple locations, services, and workers. After that you can create flexible connections with granular control of the calendar. It also allows you to customize the booking form by adding custom form fields.

You can easily add appointment booking form to any page or post using the shortcode. You can also customize the notification emails plugin sends to clients, workers, and website administrator.

5. WPForms

WPForms

WPForms is the best WordPress contact form plugin. It comes with a beginner friendly drag and drop form builder that allows you to easily create any kind of form within minutes.

WPForms can be integrated with Google Calendar through Zapier but it doesn’t allow you to set working hours. However, if you already have WPForms installed, then you can easily use it to create a custom booking form. You will have to manually approve and confirm each appointment.

We hope this article helped you find the best WordPress appointment and booking plugins. You may also want to see our list of the must have WordPress plugins for business websites.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post 5 Best WordPress Appointment and Booking Plugins appeared first on WPBeginner.



from WPBeginner http://ift.tt/1C1iwaw
More links is https://mwktutor.com

Monday 29 January 2018

How to Start a Food Blog and Make Money From Your Recipes (2018)

Do you want to start a food blog and make money from your recipes? Starting a new food blog can be challenging for beginners, specially when you are not a techy. Having helped over 100,000+ users start their own blogs, we are often asked about how to start a food blog and successfully earn money from it. In this step by step guide, we will show you how to start a food blog and make money from your recipes without any technical skills.

Starting a food blog and making money from your recipes

We have broken the process down, so it’s easy to follow whether you’re 20 years old or 60 years old. However if you need help, our expert team will help you setup your blog for free. → Click Here to Get Your Free WordPress Blog Setup!

What do you need to start a food blog?

There are three things you need to start a food blog using WordPress:

  1. A domain name (this will be your blog’s name that people will type to find your site e.g. wpbeginner.com)
  2. A web hosting account (this is where your website files are stored on the internet)
  3. Your undivided attention for 30 minutes.

Yes, you can start a brand new food blog in less than 30 minutes, and we will walk you through the whole process, step by step.

In this tutorial, we will cover the following:

  • How to Register a Domain Name for Free
  • How to Choose the Best Web Hosting
  • How to Install WordPress
  • How to Find the Perfect Theme (website design) for Your Food Blog
  • How to Write Recipes with SEO Friendly Formatting
  • How to Make Money from Your Food Blog
  • How to Get More Traffic to Your Food Blog
  • Resources to Learn WordPress and Grow Your Food Blog

That being said, let’s get started.

Step 1. The Right Setup

The biggest mistake new users make is starting off with the wrong blogging platform. You’ll not be making this mistake since you are already here.

We recommend using WordPress.org for your blog because it gives you access to all the WordPress features, and most importantly you can make money from your blog without any limitations.

It’s important you don’t confuse WordPress.org with WordPress.com. They are actually two different platforms. WordPress.com, which is a hosted blogging platform and WordPress.org is a free self-hosted platform. (See our comparison of WordPress.com vs WordPress.org for more details)

Now you might be wondering, why is WordPress.org free? What’s the catch?

There truth is that there’s no catch. It’s free because you have to do the setup and host it yourself.

In other words, you need a domain name and web hosting. See our guide on the difference between domain name and web hosting to learn more.

A domain name is what people type to get to your website. It’s your website’s address on the internet. Think google.com or wpbeginner.com.

Web hosting is where your website files are stored. It’s your website’s house on the internet. Every website needs web hosting.

A domain name typically costs $14.99 / year and web hosting normally costs $7.99 / month.

That’s a lot for beginners who are just starting out.

Thankfully, Bluehost, an official WordPress recommended hosting provider, has agreed to offer our users a free domain name and over 60% off on web hosting.

→ Click here to Claim this Exclusive Bluehost offer ←

Bluehost is one of the largest hosting companies in the world, and they host millions of WordPress websites including some of our own.

They’re committed to giving back to the WordPress community since 2005. They have promised us that if you cannot get your blog setup within 30 minutes by following this tutorial, then our expert team will complete the process for you without any cost. They will compensate us, so you don’t have to. Simply contact us for free blog setup help.

NOTE: At WPBeginner we believe in full transparency. If you sign up with Bluehost using our referral link, then we will earn a small commission at no extra cost to you (in fact you will save money and get a free domain + free SSL). We would get this commission for recommending just about any WordPress hosting company, but we only recommend products that we use personally use and believe will add value to our readers.

Now that we have covered that, let’s go ahead and purchase your domain + hosting for your food blog.

Open Bluehost website in a new window and follow along.

First thing you need to do is click on the green ‘Get Started Now’ button.

Getting started with Bluehost

On the next screen, you need to select the plan that you want (basic and plus are the most popular).

After that, you will be asked to enter the domain name for your website.

Choose domain name

Tip: Make sure your domain name is brandable. It’s also a bonus if it uses keywords you think your users will search for. This will help you get more traffic from search engines like Google. For more details, see our guide on choosing the best domain name for your blog.

Once you have selected your domain name, click on the next button to continue.

Now, you will need to add your account information and finalize the package information to complete the process. We recommend going with the 36 month plan because that’s best value.

On this screen, you will see optional extras that you can purchase. It’s entirely up to you whether or not you purchase these, but we generally don’t recommend purchasing them right away. You can always add them later on, if you decide that you need them.

Optional hosting addons

Once completed, you will receive an email with details on how to login to your web hosting control panel (cPanel). This is where you manage everything from support, emails, among other things. But most importantly, this is where you install WordPress.

Step 2. Install WordPress

In your hosting dashboard (cPanel), you will see small icons for different hosting features and services. You need to scroll down to the website section and click on the WordPress icon.

Install WordPress

On the next screen, click on the Get Started button. You will be asked to select your domain name. Choose the domain from the dropdown and then click Next.

WordPress installation

After that, you need to enter your Site Name, username, and a password for your site. You also need to check all the checkboxes and then click Install.

Website settings

The QuickInstall will start installing WordPress. You will be prompted to browse WordPress themes, while WordPress is being installed.

No need to do that right now. We’ll show you how to find the best WordPress theme for your food blog later.

Once WordPress is finished installing, you will see the success notice in the top header bar.

Installation successful

Click on the Installation Complete link, and it will take you to the screen with your WordPress login URL and password.

Installation finished

Congratulations, your WordPress website is now ready. You can continue login to your website by visiting the WordPress admin area.

http://ift.tt/1io9EYg

Don’t forget to replace yoursite.com with your own domain name. Once logged in, you will see the WordPress admin dashboard.

WordPress dashboard

Now you are ready to customize your food website’s appearance and start adding recipes.

Step 3. Choosing a Theme for Your Food Blog

Choosing a theme for a food and recipes blog

WordPress themes control your website’s design and appearance. There are thousands of free and paid WordPress themes that you can install on your website.

However, not all of them are suitable for a food blog. You will need a theme that matches the look and feel of a food blog. Our expert team has hand-picked the best WordPress themes for recipe and food blogs that you should try.

Once you have found a theme that you like, head over to our guide on how to install a WordPress theme for step by step installation instructions.

Step 4. Choosing a Recipe Plugin that’s SEO Friendly

If you want your recipes to get traffic from search engines, then you need to make them search engine friendly.

The best way to write recipes is by using Schema.org formatting. Schema.org formatting allows search engines to display extra information like rating, preparation time, etc.

Recipe search

Now, we know this might sound a bit too geeky for beginners. Don’t worry, we will make it super easy for you to add recipes in schema.org formatting without any special skills.

First, thing you need to do is install and activate the WP Recipe Maker plugin. For more details, see our step by step guide on how to install a WordPress plugin.

You can also use the premium version of the WP Recipe Maker plugin to take full advantage of its extensive features like enhanced SEO, ingredient linking, user ratings, taxonomies, and more.

Once you have activated the plugin, you need to create a blog post or edit an existing one. On the post edit screen, click on the WP Recipe Maker button.

Launch recipe maker

This will bring up a popup where you can enter your recipe details. You will start by adding an image for the recipe, recipe name, description, serving, duration, and other information.

Adding a new recipe

After adding general information, click on the ‘Ingredients & Instructions’ tab and start adding ingredients and instructions.

Ingredients and Instructions

You can add ingredients and instructions as plain lists, or you can divide them into groups as well for different parts of the recipe.

Next, you need to switch to the Nutrition Facts tab and click on the calculate nutrition facts button.

Calculate nutrition facts

The plugin will now fetch Nutrition facts for matching ingredients. Once you are satisfied, you can click on the calculate nutrition facts button again, and it will calculate the values.

Now if you are satisfied with the recipe, you can go ahead and click on insert and close button.

The plugin will now add the required shortcode to your post editor. You can now save or publish your post and then click on the preview button to see your recipe in action.

Preview of a recipe in WordPress

The plugin comes with extensive settings including several styles and templates to display your recipes. You can go to WP Recipe Maker » Settings page to change the appearance of your recipes and other settings.

WP Recipe Maker settings

Step 5. How to Monetize Your Food Blog

After you have added a few of your best recipes, it is time to start making money from your food blog. There are plenty of ways to monetize your food blog and start earning from your recipes.

Here are some of the most effective ways to monetize your food blog.

1. Selling eBooks with Your Recipes

Selling ebooks

The most effective strategy to make money from your recipe blog would be to sell your own products or digital downloads. These products can be physical goodies and merchandise such as t-shirts, printed books, mugs, or they can be digital downloads such as ebooks.

To sell things from your WordPress blog, you will need WooCommerce. It is available as a WordPress plugin and will add an online store to your existing food blog.

You can also sell memberships on your website, allowing paid members to download ebooks, videos, secret recipes, or submit their own content. If you want to go the subscription route, then you will need MemberPress. For detailed instructions, see our guide on how to make a membership website.

2. Display Ads Using Google AdSense

Display ads on your food blog

The easiest way to instantly start earning from your website is by using Google AdSense. It allows you to display advertisement on your food blog and earn money when your users click on those ads.

Adding Google AdSense to your website is super easy and requires no coding skills at all. See our guide on how to properly add Google AdSense to your WordPress blog for step by step instructions.

3. Affiliate Marketing

Affiliate marketing

Affiliate marketing is another way to generate an income stream from your food blog. Basically you add links to affiliate products from your recipes and blog posts. Every time someone purchases those products using your link, then you will earn a commission.

You will need to find food related affiliate products first. Many top websites in the food industry offer affiliate programs. You can also join Amazon’s affiliate program and start recommending products from the world’s largest eCommerce store.

See our list of the best affiliate marketing tools and plugins that you can use on your food blog to boost your affiliate earnings.

For more monetization tips, see our article on how to make money online from your WordPress blog.

Step 6. How to Get More Traffic to Your Food Blog

Your food blog’s earnings directly depend on your website’s traffic. More users visiting your website means more earnings, brand recognition, and success for your website.

Here are some tips to get more visitors to your website.

Start Building an Email List

Email Marketing

More than 75% of visitors who visit your website, will not come back again. There is nothing wrong with your website. It’s just that there is so much content on the internet that your website disappears like a needle in the haystack.

Email marketing allows you to capture those users as subscribers, so that you can reach them via email and bring them back to your website.

See our guide on why you should start building your email list right away. Once you set up an email marketing solution, then check out our guide on how to do lead generation in WordPress. It will help you grow your email list like a total pro.

Create a YouTube Channel

YouTube

When it comes to food, videos are a lot more engaging than text. This is where YouTube comes in. It is not only the largest video sharing website in the world, it is also the second biggest search engine and the second most active social media platform in the world.

Creating a YouTube channel not allows you to add video recipes to your blog, it also helps you find new users who can become active subscribers, and your most engaged fans.

Utilize Instagram to Drive Traffic

Instagram

Food pics are instant hits among Instagram viewers. The popular photo and video sharing platform is rapidly growing and has very high engagement.

Upload your food photos and use hashtags, so that Instagram users can discover your photos. Easiest way to grow your Instagram following is by sharing your Instagram photos in WordPress.

There are many ways to bring more users to your food blog. See more tips to drive traffic to your new WordPress blog.

Step 7. Learning WordPress with More Resources

As you start using WordPress, you will quickly discover new things. Some of these new things may look too technical or complicated. That’s where we can help.

WPBeginner is the largest free WordPress resource site in the world for beginners.

Our goal is to provide helpful content that is easy to understand for beginners, business owners, and bloggers.

To expand your WordPress knowledge, you should check out:

  • WPBeginner Dictionary – The best place for beginners to start and familiarize themselves with the WordPress lingo
  • WPBeginner Videos – New to WordPress? Watch these 23 videos to master WordPress.
  • WPBeginner Blog – The central place for all our WordPress tutorials.

You can also subscribe to our YouTube Channel where we regularly share video tutorials to help you learn WordPress.

We hope this article helped you learn how to start a food blog and make money from your recipes. You may also want to see our complete step by step WordPress SEO guide for beginners.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Start a Food Blog and Make Money From Your Recipes (2018) appeared first on WPBeginner.



from WPBeginner http://ift.tt/2E0kTXZ
More links is https://mwktutor.com