Table of Contents
WORDPRESS plug-in development and learning (1) HELLO WORLD, wordpresshello
Home Backend Development PHP Tutorial WORDPRESS plug-in development learning (1) HELLO WORLD, wordpresshello_PHP tutorial

WORDPRESS plug-in development learning (1) HELLO WORLD, wordpresshello_PHP tutorial

Jul 13, 2016 am 09:56 AM
wordpress plugin

WORDPRESS plug-in development and learning (1) HELLO WORLD, wordpresshello

The first article in the WORDPRESS plug-in development and learning series, append the fixed character "Hello World" at the end of each article

1. Open the wordpress directory->wp-content->plugins

2. Create a new directory 1100w-hello-world under plugins

3. Create two new files under 1100w-hello-world

1100w-hello-world.php is a necessary file for the plug-in and the entry file for the plug-in. Place the main function code of the plug-in. If the plug-in contains many functions, the function code can be placed in different php pages. In this example, because only hello world is displayed, the function code is transferred to the 1100w-hello-world.php code

readme.txt If you need to share the plug-in to the wordpress community, you need to use this file. During testing, the build was not used.

After the creation is completed, the directory structure is as follows:

4. Edit the 1100w-hello-word.php file and enter the following code first

<?<span>php 
</span><span>/*</span><span>
Plugin Name: Hello-World
Plugin URI: http://1100w.com/
Description: 最简单的插件实现,在每篇文章的后面追加hello world
Version: 1.0
Author: 1100w
Author URI: http://1100w.com
License: GPL
</span><span>*/</span>
?>
Copy after login

After saving the code, open wordpress and enter the background plug-in management. Although the function code is not added, you can see the plug-in information we developed

The above comment code is the description code of the wordpress plug-in. The format is fixed and must be followed by each wordpress plug-in. Corresponding to:
Plug-in name
Official link of the plug-in
Plug-in description
Version
Author
Official link of the author
Open source agreement

5. Add function code to 1100w-hello-word.php

<span>//</span><span>添加过滤器,在the_content显示时,执行hello_world函数,追加返回数据</span>
add_filter('the_content','hello_world'<span>);
 
</span><span>//</span><span>回调函数</span>
<span>function</span> hello_world(<span>$content</span><span>)
{
     </span><span>//</span><span>检测是否为single页面.</span>
     <span>if</span><span> ( is_single() ) {
            </span><span>//</span><span>添加Hello World.</span>
        <span>return</span> <span>$content</span> . "<h1> Hello World </h1>"<span>;
     }
     </span><span>else</span><span> {
           </span><span>//</span><span>如果是其它页面不予处理。</span>
        <span>return</span> <span>$content</span><span>;
     }
}</span>
Copy after login

6. Activate the plug-in and open a link. The plug-in function is displayed as follows:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/986993.htmlTechArticleWORDPRESS plug-in development and learning (1) HELLO WORLD, wordpresshello WORDPRESS plug-in development and learning series of articles, the first in each article Append fixed characters Hello World at the end of the article 1. Open w...
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

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)

How to use WordPress plug-in to implement email subscription function How to use WordPress plug-in to implement email subscription function Sep 05, 2023 pm 06:37 PM

How to use WordPress plug-in to implement email subscription function In today’s Internet age, email subscription function has become an indispensable part of website operation. Through the email subscription function, we can push the latest news, activities, offers and other information to users in a timely manner to enhance user stickiness and interactivity. In the WordPress website, we can implement the email subscription function by using plug-ins. The following will introduce how to use the WordPress plug-in to implement the email subscription function. Step 1: Choose the right plugin

How to add online payment functionality to WordPress plugin How to add online payment functionality to WordPress plugin Sep 05, 2023 pm 04:19 PM

How to Add Online Payment Function to WordPress Plugin With the rapid development of the e-commerce industry, adding online payment function to the website has become a critical need. For those who use WordPress as a website development platform, there are many ready-made plugins that can help them achieve this goal. This article will introduce how to add online payment functionality to WordPress plug-in and provide code samples for reference. Determine the payment interface Before adding the online payment function, you must first determine the payment interface to use. current city

How to develop a feature that automatically updates a WordPress plugin How to develop a feature that automatically updates a WordPress plugin Sep 05, 2023 am 10:40 AM

How to Develop an Auto-Updating WordPress Plugin WordPress is a very popular open source content management system (CMS) with a rich plugin market to extend its functionality. To ensure that plugins are always up to date and secure, developers need to implement automatic updates. In this article, we’ll walk you through how to develop an auto-updating WordPress plugin and provide code examples to help you get started quickly. Preparation Before starting development, you need to prepare the following key steps: Create

How to use WordPress plug-in to implement instant query function How to use WordPress plug-in to implement instant query function Sep 06, 2023 pm 12:39 PM

How to use WordPress plug-ins to achieve instant query function WordPress is a powerful blog and website building platform. Using WordPress plug-ins can further expand the functions of the website. In many cases, users need to perform real-time queries to obtain the latest data. Next, we will introduce how to use WordPress plug-ins to implement instant query functions and provide some code samples for reference. First, we need to choose a suitable WordPress plug-in to achieve instant query

How to develop a WordPress plugin that automatically generates project progress How to develop a WordPress plugin that automatically generates project progress Sep 05, 2023 am 08:48 AM

How to develop a WordPress plug-in that automatically generates project progress. In the process of project management, it is very important to understand the project progress. For users who use WordPress to build websites, being able to directly view project progress in the WordPress backend will greatly improve work efficiency. Therefore, it is very beneficial to develop a WordPress plugin that automatically generates project progress. This article describes how to develop such a plug-in and provides code examples. Plugin Overview The main functions of this plugin are

How to use WordPress plug-in to implement instant question function How to use WordPress plug-in to implement instant question function Sep 06, 2023 am 08:21 AM

How to Use WordPress Plugins to Implement Instant Question Function WordPress is a powerful and popular blogging and website building tool. It provides many plug-ins that allow bloggers to customize and enhance the functionality of their blog according to their needs. One of the very useful features is Live Questions, which allows bloggers to interact with readers in real time and answer their questions. This article will introduce how to use a WordPress plug-in to implement the instant question function and provide code examples. Step 1: Install the Plugin First, in WordP

How to deal with error messages when WordPress plug-in installation fails? How to deal with error messages when WordPress plug-in installation fails? Mar 04, 2024 pm 04:57 PM

How to deal with error messages when WordPress plug-in installation fails? As one of the most popular content management systems currently, WordPress has a rich plug-in library, providing users with various functional extensions and customization options. However, when using WordPress, sometimes plug-in installation fails, and error messages may appear, making users feel confused and anxious. This article will introduce some common WordPress plug-in installation failure error messages and how to deal with these problems. 1. Report

How to avoid Chinese garbled characters in WordPress How to avoid Chinese garbled characters in WordPress Mar 05, 2024 pm 09:36 PM

How to avoid Chinese garbled characters in WordPress requires specific code examples. In the process of using WordPress websites, many users will encounter the problem of Chinese garbled characters. Garbled Chinese characters will cause trouble for users when reading and browsing the website, and may also affect the user experience and search engine optimization of the website. In this article, we will introduce some methods to solve the Chinese garbled problem in WordPress and provide specific code examples. Set the database character set: First, make sure the database character set is set correctly to support the

See all articles