SUPER Sale — up to 80% off every CodeAstrology plugin.

00days 00hrs 00min 00sec
Skip to content
CodeAstrology animated logo (1)
Content, plugins & products by CodeAstrology
Contact Us contact@codeastrology.com
Support/Help
CodeAstrology animated logo (1)

CodeAstrology

We Develop and Sell WordPress Plugins and Themes

  • Home
  • All Products
    • Premium
    • Free
    • Woo Product Table
    • Min Max Quantity & Step Control
    • Sync Master Sheet
    • UltraAddons
  • Resources
    • Demo Site
    • Docs
    • Blog
  • My Account
    • Support Area
  • Contact
    • Team
 0 - $0.00
Get Quote
WordPress Meta Box for Beginner
By Saiful Islam

WordPress Meta Box for Beginner

Do you want to customize your WordPress theme/plugin to add additional information on your post/page? Then you need to use Meta Box on your WordPress. In this step by step article I’ll show you how to add Meta Box in WordPress for beginner.

Table of Contents

Toggle
      • What is Meta Box?
      • What is Meta Data?
  • How to add Meta Box in WordPress?
      • Saving Meta Data

What is Meta Box?

Meta Boxes are one of the most important feature of WordPress that allow you to add custom option to your WordPress page of post. In WordPress you can use category and tag which is given as default. But if you want to add more info about your product/page/post, then what do you need first?

In this case you can add custom meta box to show extra data to Page/Post or Post Type.

What is Meta Data?

The data we input in meta box is called meta data. More simply the value we input in meta box is a meta data. It can be number or text.

But, remember, we need to sanitize the date to make it secure.

[UltraAddons_Template id=’8543′]

How to add Meta Box in WordPress?

You need to register a function named add_meta_box to create a Meta Box in WordPress. This function includes the following syntax:

add_meta_box( $id, $title, $callback, $screen, $context, $priority, $callback_args)

Now we will create  a meta box for post type. I’m creating this file into themes functions.php file.

Just write the code into your themes functions.php file. But creating a unique php file for meta boxes will be better for practical use.

add_action("add_meta_boxes","my_meta");

 	function my_meta(){
    add_meta_box(
    "my_custom_meta",
    "My first meta box",
    "my_meta_box_mes",
    "post",
    "normal",
    "low"
    );
  } 
function my_meta_box_mes(){
  echo '<input type="text" |';
  
}

See how does it look

Custom Metabox

Saving Meta Data

For save your meta data adding a function. You can use a code like below

add_action("admin_init", "custom_metabox");

 	function custom_metabox(){
    add_meta_box(
    "Custom_metabox_01",
    "Custom Metabox",
    "custom_metabox_field",
    "post",
    "normal",
    "low"
    );
  } 
function custom_metabox_field(){
  global $post;
  
  $data = get_post_custom($post->ID);
  $val = isset($data['customm_input']) ? esc_attr($data['custom_input'] [0]) : 'no value';
  echo '<input type="text" name="custom_input" id="custom_input" value="" .$val. />';
  
}
add_action("save_post","save_detail");

function save_detail(){
  global $post;
  
};

You may need to show meta data in your single post. For this, edit your single.php file in your theme file.

Add the code below to show your Meta date in single post.

$custom_post_type = get_post_meta($post->ID, 'custom_input', true);
      
      echo $custom_post_type;

Here custom_input is my custom meta data id. Use your own ID to show your custom meta data.

So this is all for today. I hope you have understand adding and customizing WordPress Meta Box for Beginner. There are some other tutorials on basic php in Bengali language with you tube tutorial. You can check PHP Bangla Tutorial.

Meta Box for Beginner WordPress Meta Box WordPress Meta Box for Beginner

Share

Post navigation

Previous: How to Fix – Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin.
Next: How to Fix the Error Establishing a Database Connection in WordPress
Trustpilot
Trustpilot rating TrustScore: 4.9 | Rated: Excellent
Trustpilot
Trustpilot rating TrustScore: 4.9 | Rated: Excellent

Subscribe to our Newsletter


Resources

  • Support
  • Coupons
  • Blog & News
  • Write For Us
  • Video Tutorials

Company

  • Our Service
  • Get Quote
  • Refund Policy
  • Privacy Policy
  • Support Policy
  • Terms of Service

Powered By

CodeAstrology Payment options
© 2026, CodeAstrology. All Rights Reserved. Plugins & products by CodeAstrology
  • Privacy Policy
  • Terms of Service
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT