Table of Contents
Add custom fields and background editing function areas to articles in WordPress,
Articles you may be interested in:
Home Backend Development PHP Tutorial Add custom fields and background editing functional areas to articles in WordPress, _PHP tutorial

Add custom fields and background editing functional areas to articles in WordPress, _PHP tutorial

Jul 12, 2016 am 09:02 AM
wordpress article

Add custom fields and background editing function areas to articles in WordPress,

add_post_meta
The add_post_meta function is a function in WordPress used to add custom field values ​​to posts or pages,
Its usage is the same as using the custom column panel to add custom field values ​​to the article in the article writing interface when writing an article.

add_post_meta function description
Add custom fields to articles.
Common uses include: article views, like buttons, seo plug-ins and other commonly used plug-ins are the custom field functions used.

Detailed explanation of parameters

add_post_meta($post_id, $meta_key, $meta_value,$unique);
Copy after login

$post_id
The ID value of the post or page to which the custom field is to be added
$meta_key
Key value (name) of custom field
$meta_value
Custom field value
$unique
If there is already a custom field with the same name, whether to add a custom field with the same name repeatedly, true means not allowed, false means allowed
Function usage examples

//为ID为1的文章添加_postviews自定义字段,值为99
add_post_meta(1, "_postviews", "99");
var_dump(get_post_meta(1));echo"<br />";
//为ID为1的文章添加_postviews自定义字段,值为999,并允许重复自定义字段名称
add_post_meta(1, "_postviews", 999,false);
var_dump(get_post_meta(1));echo"<br />";
Copy after login

Demo effect:

array(1) {
 ["_postviews"]=>
 array(1) {
  [0]=>
  string(2) "99"
 }
}

array(1) {
 ["_postviews"]=>
 array(2) {
  [0]=>
  string(2) "99"
  [1]=>
  string(3) "999"
 }
}


//不允许重复自定义字段的代码
add_post_meta(1, "_postviews", "996",true);
var_dump(get_post_meta(1));echo"<br />";
add_post_meta(1, "_postviews", "997",true);
var_dump(get_post_meta(1));echo"<br />";
array(1) {
 ["_postviews"]=>
 array(1) {
  [0]=>
  string(3) "996"
 }
}


array(1) {
 ["_postviews"]=>
 array(1) {
  [0]=>
  string(3) "996"
 }
}

Copy after login

add_meta_box
add_meta_box is a function used in advanced WordPress. Being able to use this function means that you already understand this world-famous blogging program better than an ordinary blogger. At least you have spent a lot of effort on it. . Being able to use it means that you are now working on a theme, plug-in, or even the WordPress backend.
It seems that we have gone into too much detail. Let's explain how to use this function from an advanced perspective.

add_meta_box function description
The add_meta_box function is a function used to add a set area on pages such as article editing.

20151219173817018.jpg (299×335)

Parameter description

<&#63;php
 add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
 &#63;>
Copy after login

$id Set the value of the id attribute in the area in the HTML code
Title name in $title area
$callback adds the display function (callback function) of the setting area
$post_type is displayed in the edit page of post or page
$context sets the display position of the area, main editing area, sidebar, others
$priority sets the priority of area display
$callback_args Additional parameters accepted by the callback function
Usage examples

function add_xz_box (){//添加设置区域的函数
add_meta_box('xz_box_1', 'add_meta_box 测试', 'xz_box_1','post','side','high',array('str1','str2'));
};
//在'add_meta_boxes'挂载 add_xz_box 函数
add_action('add_meta_boxes','add_xz_box');
 
 
function xz_box_1($post,$boxargs){//显示设置区域的回调函数
 echo"add_meta_box 测试";
};
Copy after login

Articles you may be interested in:

  • A collection of practical WordPress backend MySQL operation commands
  • About the solution for changing the WordPress backend to English on bluehost space
  • Share code examples for adding prompt boxes to the WordPress editing backend

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1084594.htmlTechArticleAdd custom fields and background editing functional areas to articles in WordPress. The add_post_meta add_post_meta function is used in WordPress to add custom fields to articles. Or a function to add custom field values ​​to the page...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
How to adjust the wordpress article list How to adjust the wordpress article list Apr 20, 2025 am 10:48 AM

There are four ways to adjust the WordPress article list: use theme options, use plugins (such as Post Types Order, WP Post List, Boxy Stuff), use code (add settings in the functions.php file), or modify the WordPress database directly.

How to build a website for wordpress host How to build a website for wordpress host Apr 20, 2025 am 11:12 AM

To build a website using WordPress hosting, you need to: select a reliable hosting provider. Buy a domain name. Set up a WordPress hosting account. Select a topic. Add pages and articles. Install the plug-in. Customize your website. Publish your website.

How to change the head image of the wordpress theme How to change the head image of the wordpress theme Apr 20, 2025 am 10:00 AM

A step-by-step guide to replacing a header image of WordPress: Log in to the WordPress dashboard and navigate to Appearance &gt;Theme. Select the topic you want to edit and click Customize. Open the Theme Options panel and look for the Site Header or Header Image options. Click the Select Image button and upload a new head image. Crop the image and click Save and Crop. Click the Save and Publish button to update the changes.

What are the plugins for wordpress blocking ip What are the plugins for wordpress blocking ip Apr 20, 2025 am 08:27 AM

WordPress IP blocking plugin selection is crucial. The following types can be considered: based on .htaccess: efficient, but complex operation; database operation: flexible, but low efficiency; firewall: high security performance, but complex configuration; self-written: highest control, but requires more technical level.

How to view the front-end of WordPress How to view the front-end of WordPress Apr 20, 2025 am 10:30 AM

You can view the WordPress front-end by logging into the dashboard and switching to the View Sites tab; automate the viewing process with a headless browser; installing the WordPress plugin to preview the front-end within the dashboard; viewing the front-end via a local URL (if WordPress is set locally).

How to cancel the editing date of wordpress How to cancel the editing date of wordpress Apr 20, 2025 am 10:54 AM

WordPress editing dates can be canceled in three ways: 1. Install the Enable Post Date Disable plug-in; 2. Add code in the functions.php file; 3. Manually edit the post_modified column in the wp_posts table.

How to import the source code of wordpress How to import the source code of wordpress Apr 20, 2025 am 11:24 AM

Importing WordPress source code requires the following steps: Create a sub-theme for theme modification. Import the source code and overwrite the files in the sub-topic. Activate the sub-theme to make it effective. Test the changes to make sure everything works.

How to write a header of a wordpress How to write a header of a wordpress Apr 20, 2025 pm 12:09 PM

The steps to create a custom header in WordPress are as follows: Edit the theme file "header.php". Add your website name and description. Create a navigation menu. Add a search bar. Save changes and view your custom header.

See all articles