GET /read/tags/$tag/posts

Get a list of posts from a tag.

Resource Information

   
Method GET
URL https://public-api.wordpress.com/rest/v1.1/read/tags/$tag/posts
Requires authentication? No

Method Parameters

Parameter Type Description
$tag (string) The tag name

Query Parameters

Parameter Type Description
http_envelope (bool)
false:
(default)
true:
Some environments (like in-browser JavaScript or Flash) block or divert responses with a non-200 HTTP status code. Setting this parameter will force the HTTP status code to always be 200. The JSON response is wrapped in an "envelope" containing the "real" HTTP status code and headers.
pretty (bool)
false:
(default)
true:
Output pretty JSON
meta (string) Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes
fields (string) Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title
callback (string) An optional JSONP callback function.
number (int) The number of posts to return. Limit: 40. Default: 10.
page (int) Return the Nth 1-indexed page of posts.
order (string)
DESC:
(default) Return posts in descending order. For dates, that means newest to oldest.
ASC:
Return posts in ascending order. For dates, that means oldest to newest.
after (iso 8601 datetime) Return posts dated after the specified datetime.
before (iso 8601 datetime) Return posts dated before the specified datetime.

Response Parameters

Parameter Type Description
ID (int) The post ID.
site_ID (int) The site ID.
author (object) The author of the post.
date (iso 8601 datetime) The post's creation time.
modified (iso 8601 datetime) The post's most recent update time.
title (html) context dependent.
URL (url) The full permalink URL to the post.
short_URL (url) The wp.me short URL.
content (html) context dependent.
excerpt (html) context dependent.
slug (string) The name (slug) for the post, used in URLs.
guid (string) The GUID for the post.
status (string)
publish:
The post is published.
draft:
The post is saved as a draft.
pending:
The post is pending editorial approval.
private:
The post is published privately
future:
The post is scheduled for future publishing.
trash:
The post is in the trash.
auto-draft:
The post is a placeholder for a new post.
sticky (bool) Is the post sticky?
password (string) The plaintext password protecting the post, or, more likely, the empty string if the post is not password protected.
parent (object|false) A reference to the post's parent, if it has one.
type (string) The post's post_type. Post types besides post, page and revision need to be whitelisted using the rest_api_allowed_post_types filter.
comments_open (bool) Is the post open for comments?
pings_open (bool) Is the post open for pingbacks, trackbacks?
likes_enabled (bool) Is the post open to likes?
sharing_enabled (bool) Should sharing buttons show on this post?
comment_count (int) The number of comments for this post.
like_count (int) The number of likes for this post.
i_like (bool) Does the current user like this post?
is_reblogged (bool) Did the current user reblog this post?
is_following (bool) Is the current user following this blog?
global_ID (string) A unique WordPress.com-wide representation of a post.
featured_image (url) The URL to the featured image for this post if it has one.
post_thumbnail (object) The attachment object for the featured image if it has one.
format (string)
standard:
Standard
aside:
Aside
chat:
Chat
gallery:
Gallery
link:
Link
image:
Image
quote:
Quote
status:
Status
video:
Video
audio:
Audio
geo (object|false)
menu_order (int) (Pages Only) The order pages should appear in.
publicize_URLs (array) Array of Twitter and Facebook URLs published by this post.
tags (object) Hash of tags (keyed by tag name) applied to the post.
categories (object) Hash of categories (keyed by category name) applied to the post.
attachments (object) Hash of post attachments (keyed by attachment ID).
metadata (array) Array of post metadata keys and values. All unprotected meta keys are available by default for read requests. Both unprotected and protected meta keys are available for authenticated requests with access. Protected meta keys can be made available with the rest_api_allowed_public_metadata filter.
meta (object) API result meta data
current_user_can (object) List of permissions. Note, deprecated in favor of `capabilities`
capabilities (object) List of post-specific permissions for the user; publish_post, edit_post, delete_post
date_range (object) date range covered by current results.
number (int) The number of posts brought back by current query.
posts (array) An array of post objects.

Resource Errors

These are the possible errors returned by this endpoint.

HTTP Code Error Identifier Error Message
400 invalid_tag The tag requested does not seem to be valid.
403 unauthorized User cannot view taxonomy
403 unauthorized User cannot view post
400 invalid_topic The TOPIC parameter must be specified.
403 unauthorized User cannot edit taxonomy
400 invalid_post Invalid post
400 invalid_context Invalid API CONTEXT
403 unauthorized User cannot edit post
404 unknown_post Unknown post

Example

curl 'https://public-api.wordpress.com/rest/v1/read/tags/wordpress/posts/?number=2'
<?php
$options  = array (
  'http' => 
  array (
    'ignore_errors' => true,
  ),
);

$context  = stream_context_create( $options );
$response = file_get_contents(
	'https://public-api.wordpress.com/rest/v1/read/tags/wordpress/posts/?number=2',
	false,
	$context
);
$response = json_decode( $response );
?>

Response

{
    "date_range": {
        "before": "2021-10-21T06:57:00+01:00",
        "after": "2021-10-21T05:50:29+00:00"
    },
    "number": 2,
    "posts": [
        {
            "ID": 45718,
            "site_ID": 76159859,
            "author": {
                "ID": 72738911,
                "login": "itsgoodtobecrazysometimes",
                "email": false,
                "name": "itsgoodtobecrazysometimes",
                "first_name": "",
                "last_name": "",
                "nice_name": "itsgoodtobecrazysometimes",
                "URL": "http:\/\/itsgoodtobecrazysometimes.wordpress.com",
                "avatar_URL": "https:\/\/2.gravatar.com\/avatar\/e6721e42506809745a5b3674c131bcde?s=96&d=identicon&r=G",
                "profile_URL": "https:\/\/en.gravatar.com\/itsgoodtobecrazysometimes",
                "ip_address": false,
                "site_ID": 76159859,
                "site_visible": true
            },
            "date": "2021-10-21T06:57:00+01:00",
            "modified": "2021-10-20T23:00:51+01:00",
            "title": "How to become the best parent in the world",
            "URL": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/2021\/10\/21\/how-to-become-the-best-parent-in-the-world\/",
            "short_URL": "https:\/\/wp.me\/p59yEP-bTo",
            "content": "<div class=\"is-reader\">\n<figure class=\"wp-block-image size-large\" style=\"margin: 0 0 1em;\"><img data-attachment-id=\"45716\" data-permalink=\"https:\/\/itsgoodtobecrazysometimes.wordpress.com\/2021\/10\/21\/how-to-become-the-best-parent-in-the-world\/screenshot_20211020-213231_pokmongo\/\" data-orig-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg\" data-orig-size=\"1080,2400\" data-comments-opened=\"1\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\"}' data-image-title=\"Screenshot_20211020-213231_Pokmon GO\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=135\" data-large-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=461\" src=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=461\" alt=\"\" class=\"wp-image-45716\" style=\"max-width: 100%; border-radius: inherit;\" srcset=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=461 461w, https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=922 922w, https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=68 68w, https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=135 135w, https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg?w=768 768w\" sizes=\"(max-width: 461px) 100vw, 461px\"><\/figure><figure class=\"wp-block-image\" style=\"margin: 0 0 1em;\"><img data-attachment-id=\"45717\" data-permalink=\"https:\/\/itsgoodtobecrazysometimes.wordpress.com\/2021\/10\/21\/how-to-become-the-best-parent-in-the-world\/screenshot_20211020-205657_pokmongo\/\" data-orig-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg\" data-orig-size=\"1080,2400\" data-comments-opened=\"1\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\"}' data-image-title=\"Screenshot_20211020-205657_Pokmon GO\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg?w=135\" data-large-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg?w=461\" src=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg\" alt=\"\" class=\"wp-image-45717\" style=\"max-width: 100%; border-radius: inherit;\"><\/figure><figure class=\"wp-block-image\" style=\"margin: 0 0 1em;\"><img data-attachment-id=\"45715\" data-permalink=\"https:\/\/itsgoodtobecrazysometimes.wordpress.com\/2021\/10\/21\/how-to-become-the-best-parent-in-the-world\/screenshot_20211020-103609_pokmongo\/\" data-orig-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg\" data-orig-size=\"1080,2400\" data-comments-opened=\"1\" data-image-meta='{\"aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\"}' data-image-title=\"Screenshot_20211020-103609_Pokmon GO\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg?w=135\" data-large-file=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg?w=461\" src=\"https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg\" alt=\"\" class=\"wp-image-45715\" style=\"max-width: 100%; border-radius: inherit;\"><\/figure><p style=\"overflow-wrap: break-word;\">These are what are known as shiny pokemon, they are very rare and difficult to get, you might be lucky to get one every couple of months. I got these three in a day. Not only that, the top one is a legendary pokemon (no I don\u2019t know why) which Monkey has been after for a while. <\/p>\n\n\n\n<p style=\"overflow-wrap: break-word;\">Yep, I am the best parent in the world ever. <\/p>\n <\/div>",
            "excerpt": "<p>These are what are known as shiny pokemon, they are very rare and difficult to get, you might be lucky to get one every couple of months. I got these three in a day. Not only that, the top one is a legendary pokemon (no I don\u2019t know why) which Monkey has been after for [&hellip;]<\/p>\n",
            "slug": "how-to-become-the-best-parent-in-the-world",
            "guid": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/?p=45718",
            "status": "publish",
            "sticky": false,
            "password": "",
            "parent": false,
            "type": "post",
            "comments_open": true,
            "pings_open": true,
            "likes_enabled": true,
            "sharing_enabled": true,
            "comment_count": 0,
            "like_count": 0,
            "i_like": false,
            "is_reblogged": false,
            "is_following": false,
            "global_ID": "bad00032566feeb0b62c2eb5e3eab09c",
            "featured_image": "",
            "post_thumbnail": null,
            "format": "standard",
            "geo": false,
            "menu_order": 0,
            "publicize_URLs": [],
            "tags": {
                "itsgoodtobecrazysometimes": {
                    "ID": 387340962,
                    "name": "itsgoodtobecrazysometimes",
                    "slug": "itsgoodtobecrazysometimes",
                    "description": "",
                    "post_count": 10701,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/itsgoodtobecrazysometimes\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:itsgoodtobecrazysometimes",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:itsgoodtobecrazysometimes\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "mycrazylife": {
                    "ID": 119178403,
                    "name": "mycrazylife",
                    "slug": "mycrazylife",
                    "description": "",
                    "post_count": 10782,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/mycrazylife\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:mycrazylife",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:mycrazylife\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "parent": {
                    "ID": 54150,
                    "name": "parent",
                    "slug": "parent",
                    "description": "",
                    "post_count": 20,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/parent\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:parent",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:parent\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "parenting": {
                    "ID": 5309,
                    "name": "parenting",
                    "slug": "parenting",
                    "description": "",
                    "post_count": 72,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/parenting\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:parenting",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:parenting\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "pokemon": {
                    "ID": 36283,
                    "name": "pokemon",
                    "slug": "pokemon",
                    "description": "",
                    "post_count": 9,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/pokemon\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:pokemon",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:pokemon\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "pokemon go": {
                    "ID": 396338098,
                    "name": "pokemon go",
                    "slug": "pokemon-go",
                    "description": "",
                    "post_count": 15,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/pokemon-go\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:pokemon-go",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:pokemon-go\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "shiny": {
                    "ID": 108989,
                    "name": "shiny",
                    "slug": "shiny",
                    "description": "",
                    "post_count": 1,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/shiny\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:shiny",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:shiny\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "trina": {
                    "ID": 535896,
                    "name": "trina",
                    "slug": "trina",
                    "description": "",
                    "post_count": 9975,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/trina\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:trina",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:trina\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                },
                "wordpress": {
                    "ID": 33,
                    "name": "wordpress",
                    "slug": "wordpress",
                    "description": "",
                    "post_count": 10080,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/tag\/wordpress\/feed\/",
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:wordpress",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/tags\/slug:wordpress\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                }
            },
            "categories": {
                "random": {
                    "ID": 30,
                    "name": "random",
                    "slug": "random",
                    "description": "",
                    "post_count": 545,
                    "feed_url": "https:\/\/itsgoodtobecrazysometimes.wordpress.com\/category\/random\/feed\/",
                    "parent": 0,
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/categories\/slug:random",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/categories\/slug:random\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859"
                        }
                    }
                }
            },
            "attachments": {
                "45715": {
                    "ID": 45715,
                    "URL": "https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg",
                    "guid": "http:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-103609_pokmongo.jpg",
                    "mime_type": "image\/jpeg",
                    "width": 1080,
                    "height": 2400
                },
                "45716": {
                    "ID": 45716,
                    "URL": "https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg",
                    "guid": "http:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-213231_pokmongo.jpg",
                    "mime_type": "image\/jpeg",
                    "width": 1080,
                    "height": 2400
                },
                "45717": {
                    "ID": 45717,
                    "URL": "https:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg",
                    "guid": "http:\/\/itsgoodtobecrazysometimes.files.wordpress.com\/2021\/10\/screenshot_20211020-205657_pokmongo.jpg",
                    "mime_type": "image\/jpeg",
                    "width": 1080,
                    "height": 2400
                }
            },
            "metadata": [
                {
                    "id": "329167",
                    "key": "_wpas_done_12347365",
                    "value": "1"
                }
            ],
            "meta": {
                "links": {
                    "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/posts\/45718",
                    "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/posts\/45718\/help",
                    "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859",
                    "replies": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/posts\/45718\/replies\/",
                    "likes": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/76159859\/posts\/45718\/likes\/"
                }
            },
            "current_user_can": {
                "publish_post": false,
                "delete_post": false,
                "edit_post": false
            },
            "capabilities": {
                "publish_post": false,
                "delete_post": false,
                "edit_post": false
            },
            "pseudo_ID": "bad00032566feeb0b62c2eb5e3eab09c",
            "is_external": false,
            "site_name": "Its good to be crazy Sometimes",
            "site_URL": "https:\/\/itsgoodtobecrazysometimes.wordpress.com",
            "site_is_private": false,
            "featured_media": {}
        },
        {
            "ID": 4436,
            "site_ID": 180280521,
            "author": {
                "ID": 189847503,
                "login": "wparchivesblog",
                "email": false,
                "name": "WP Archives",
                "first_name": "WP Archives",
                "last_name": "Blog",
                "nice_name": "wparchivesblog",
                "URL": "https:\/\/wparchivesblog.wordpress.com",
                "avatar_URL": "https:\/\/0.gravatar.com\/avatar\/3cc76399570fc04e3d6061438c8e0efa?s=96&d=identicon&r=G",
                "profile_URL": "https:\/\/en.gravatar.com\/wparchivesblog",
                "ip_address": false,
                "site_ID": 180280521,
                "site_visible": true
            },
            "date": "2021-10-21T05:50:29+00:00",
            "modified": "2021-10-21T05:50:29+00:00",
            "title": "How to Start A Personal Blog In 2021: A Quick Start Guide",
            "URL": "https:\/\/wparchivesblog.wordpress.com\/2021\/10\/21\/how-to-start-a-personal-blog-in-2021-a-quick-start-guide\/",
            "short_URL": "https:\/\/wp.me\/pccrcl-19y",
            "content": "<p><img width=\"800\" height=\"419\" src=\"https:\/\/wparchives.com\/wp-content\/uploads\/2021\/10\/How-to-Start-A-Personal-Blog-In-2021-A-Quick.jpeg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"15 Best Online Course Platforms to Create &amp; Sell Your Online Courses In 2021\" title=\"How to Start A Personal Blog In 2021: A Quick Start Guide 2\"><\/p>\n<p>Are you looking for an easy tutorial on how to start a personal blog? Your search ends here.<\/p>\n<p>Starting a personal blog has its own advantages such as;<\/p>\n<ul>\n<li>It helps you build a brand<\/li>\n<li>It helps you promote your business<\/li>\n<li>It drives long-term results<\/li>\n<li>It helps you share your ideas, knowledge and more<\/li>\n<\/ul>\n<p>There are millions of blogs out there and everybody is trying hard to build successful blogs.<\/p>\n<p>So if you\u2019re planning to start a personal from scratch, this guide is for you where you\u2019ll learn;<\/p>\n<ul>\n<li>How to start a personal blog on a limited budget<\/li>\n<li>Essential tools you need to build a better blog<\/li>\n<li>5 things to do after launching your personal blog and many more<\/li>\n<\/ul>\n<p>Are you ready to find them out? Let\u2019s jump into the details.\u00a0<\/p>\n<h2>How to Start A Personal Blog on A Small Budget?<\/h2>\n<figure class=\"wp-block-image size-full\"><\/figure>\n<p>First things first: you need to pick a blogging platform to create a personal blog.<\/p>\n<p>There are plenty of free blogging sites you can use to start your own personal blog including;<\/p>\n<ul>\n<li>Blogger<\/li>\n<li>WordPress<\/li>\n<li>Tumblr<\/li>\n<li>Webs<\/li>\n<li>Weebly<\/li>\n<li>Medium<\/li>\n<\/ul>\n<p>But\u2026 we HIGHLY recommend a self-hosted WordPress platform.<\/p>\n<p>Why?<\/p>\n<p>[\u2026]<\/p>\n<p><a href=\"https:\/\/wparchives.com\/start-personal-blog-2021-quick-start-guide\/\"><span class=\"screen-reader-text\">How to Start A Personal Blog In 2021: A Quick Start Guide<\/span> Keep Reading \u00bb<\/a><br \/>#Blogging #WordPress #BloggingTips #BlogChat<\/p>\n<p>source <a href=\"https:\/\/wparchives.com\/start-personal-blog-2021-quick-start-guide\/\">https:\/\/wparchives.com\/start-personal-blog-2021-quick-start-guide\/<\/a><\/p>\n",
            "excerpt": "<p>Are you looking for an easy tutorial on how to start a personal blog? Your search ends here. Starting a personal blog has its own advantages such as; It helps you build a brand It helps you promote your business It drives long-term results It helps you share your ideas, knowledge and more There are [&hellip;]<\/p>\n",
            "slug": "how-to-start-a-personal-blog-in-2021-a-quick-start-guide",
            "guid": "https:\/\/wparchivesblog.wordpress.com\/?p=4436",
            "status": "publish",
            "sticky": false,
            "password": "",
            "parent": false,
            "type": "post",
            "comments_open": true,
            "pings_open": false,
            "likes_enabled": true,
            "sharing_enabled": true,
            "comment_count": 0,
            "like_count": 1,
            "i_like": false,
            "is_reblogged": false,
            "is_following": false,
            "global_ID": "42faaf41655aa8cf209ce92d223aad9c",
            "featured_image": "",
            "post_thumbnail": null,
            "format": "standard",
            "geo": false,
            "menu_order": 0,
            "publicize_URLs": [],
            "tags": {},
            "categories": {
                "Blogging": {
                    "ID": 91,
                    "name": "Blogging",
                    "slug": "blogging",
                    "description": "",
                    "post_count": 2189,
                    "feed_url": "https:\/\/wparchivesblog.wordpress.com\/category\/blogging\/feed\/",
                    "parent": 0,
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/categories\/slug:blogging",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/categories\/slug:blogging\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521"
                        }
                    }
                },
                "WordPress": {
                    "ID": 33,
                    "name": "WordPress",
                    "slug": "wordpress",
                    "description": "",
                    "post_count": 2189,
                    "feed_url": "https:\/\/wparchivesblog.wordpress.com\/category\/wordpress\/feed\/",
                    "parent": 0,
                    "meta": {
                        "links": {
                            "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/categories\/slug:wordpress",
                            "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/categories\/slug:wordpress\/help",
                            "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521"
                        }
                    }
                }
            },
            "attachments": {},
            "metadata": false,
            "meta": {
                "links": {
                    "self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/posts\/4436",
                    "help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/posts\/4436\/help",
                    "site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521",
                    "replies": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/posts\/4436\/replies\/",
                    "likes": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/180280521\/posts\/4436\/likes\/"
                }
            },
            "current_user_can": {
                "publish_post": false,
                "delete_post": false,
                "edit_post": false
            },
            "capabilities": {
                "publish_post": false,
                "delete_post": false,
                "edit_post": false
            },
            "pseudo_ID": "42faaf41655aa8cf209ce92d223aad9c",
            "is_external": false,
            "site_name": "WP Archives Blog",
            "site_URL": "https:\/\/wparchivesblog.wordpress.com",
            "site_is_private": false,
            "featured_media": {
                "uri": "https:\/\/wparchives.com\/wp-content\/uploads\/2021\/10\/How-to-Start-A-Personal-Blog-In-2021-A-Quick.jpeg",
                "width": 0,
                "height": 0,
                "type": "image"
            }
        }
    ]
}