Skip to main content

Tutorial Spot

  http://latestnewsnaij.blogspot.com/2014/04/learn-how-to-add-multiple-posts-under.html

3 ways to rekindle your blogging mojo


I’m sure it’s happened to us all – we know we need to blog, but there just isn’t anything to blog about.
Or is there?
I’ve had an inspiration drought over the last few months, but I’ve found three ways to get my blogging mojo firing again:

1. Revisit old content
Read through some old blog posts and ask yourself:
  • Is there something I can cover in more detail?
  • Are there posts that could be updated and refreshed as a new post?
  • Can I spin a new blog post out of a comment left on a previous post?
2. Answer questions
3 ways to rekindle your blogging mojo
Every industry has frequently asked questions (FAQs), so why not answer a few in your next blog post? If you already have a FAQ page on your website, check out Quora or LinkedIn Answers for some inspiration.
3. Repurpose
Have you run webinars or taken part in radio interviews? Maybe you’ve been podcasting?
Why not get them transcribed, then add the transcript as a new blog post? Not only does it give you a blog post, you can showcase your expertise at the same time!
Those are my three tips on how to rekindle your blogging mojo, but what do you do?

Comments

Popular posts from this blog

Create a nigerian news blog -4- Homepage Customization Finalized

My Love For Canada

It seems like these days, many people love this country of my first love, Canada, i have always dreamt of being in it as a full fledged citizen having the right to do anything as stated by the law for every citizen, I have my reasons for such love but you can simply take a deep dive into discovering more about the country and why I have such a strong love for  this country here . timbu.com/canada

Laravel one to one relationship with example

  Laravel one to one relationship with example “Laravel eloquent one to one relationship with example”: A one-to-one relationship is a very basic, fundamental Laravel eloquent relationship. Following our  complete guide to Laravel relationships , it simply relates one entity to another. For instance, in our voting application, a User is associated with one Vote. If we were to describe this relationship, we could say: “ Each user has one vote”. READ THE UPDATED VERSION HERE   Defining a one-to-one relationship In order to define this relationship, we call the  hasOne  method on the entity that owns the relationship. Here’s a code snippet defining the relationship. <?php namespace App \ Models ; use Illuminate \ Database \ Eloquent \ Model ; class User extends Model { /** * Get's this user's vote */ public function vote () { return $this ->hasOne(App\Models\Vote::class); } } What happens here is, we pass the n...