WordPress如何寫一個插件

今天俺跟你們一塊兒從零開始寫一個wordpress插件,功能很簡單就是在後臺頁面上顯示"Let's fuck the world"。php

文件頭
全部的wordpress插件都須要寫註釋來講明:插件名稱、插件版本、做者等信息。html

/*
Plugin Name: fuck the world
Description: 顯示fuck the world!
Author: 創客青年博客
Version: 1.6
Author URI: https://www.pipipi.net/
*/

俺寫的文件頭如上,全部的插件都須要至少包含一個Plugin Name文件頭。wordpress

action hook
接下來咱們須要在特定的wordpress「生命函數」中調用顯示信息的函數就能夠了。函數

顯示「Let's fuck the world!」函數以下:學習

function fuck_the_world(){
  echo "<div class='update-message'><p>Let's fuck the world!</p></div>";
}

添加action,代碼以下:spa

add_action('admin_notices','fuck_the_world');

所有的代碼以下,咱們只須要把這個文件放在wp-content/plugins/下便可,wordpress會自動識別該文件.net

<?php
  /*
Plugin Name: fuck the world
Description: 顯示fuck the world!
Author: 創客青年博客
Version: 1.6
Author URI: https://www.pipipi.net/
*/
function fuck_the_world(){
  echo "<div class='update-message'><p>Let's fuck the world!</p></div>";
}
add_action('admin_notices','fuck_the_world');

?>

效果
效果以下:插件

clipboard.png

歡迎你們一塊兒學習討論,歡迎訪問個人博客。code

原文連接:https://www.pipipi.net/code/1...htm

相關文章
相關標籤/搜索