Implementation of short codes in WordPress development and related function usage tips, wordpress usage tips_PHP tutorial

WBOY
Release: 2016-07-12 09:01:39
Original
949 people have browsed it

How to implement short codes in WordPress development and related function usage tips, WordPress usage tips

In fact, implementing short codes is very simple, we only need to use a function in WordPress After getting the short code and adding a small function of your own, the short code can be implemented easily and happily.

Short code implementation principle
Just like adding hooks and filter functions to some actions of WP,
The shortcode is just an encapsulated filter for the article output content,
It is not as shocking or as profound as some theme functions say.
Here’s a simple example:

function myName() {//短代码要处理的函数
return "My name's XiangZi !";
}
//挂载短代码
//xz为短代码名称 
//即你在编辑文章时输入[xz]就会执行 myName 函数
add_shortcode('xz', 'myName');
Copy after login

Then if we enter [xz] in the article, we will get

My name's XiangZi !

Copy after login

Short code to pass parameters
More advanced uses, I will talk about in later articles,
Today I will just talk about the parameter passing mechanism of short code
A more advanced example

function myName($array,$content) {
var_dump($array);
var_dump($content);
}
 
add_shortcode('xz', 'myName');
Copy after login

When editing an article we enter:

[xz a="1" b="2" c="3"]这里是三个参数哦[/xz]
Copy after login

In the function we will get:

//$array 是一个数组,
//大体结构如下
$array = array('a'=>'1','b'=>'2','c'=>'3');
//$content 是一个字符串
$content = '这里是三个参数哦';

Copy after login

shortcode_atts
I wouldn’t have used this function if I wasn’t working on a shortcode plug-in,
The shortcode_atts function is mainly used to set the initial value of the intercepted variables in the shortcode.
This is a very practical function. In fact, this function really works on arrays,
Because the parameters we intercept from the short code are all in array form.

Detailed explanation of shortcode_atts function
Don’t be confused by the function name. In WordPress, it is mainly used to set the default values ​​​​of shortcode parameters,
If we extract the code and use it elsewhere, this function can help us set the default value of a given array.

shortcode_atts function usage
This function is very simple to use.

shortcode_atts(array(
"url" => 'http://PangBu.Com'
), $url)
Copy after login

The above code means,
Set the default value of the $url array member whose key value is url to 'http://PangBu.Com',
It doesn't seem to be of much use in other places, but for some super lazy people who sometimes always forget or are too lazy to set the value of the array, this function is very useful.

shortcode_atts function declaration

/**
 * Combine user attributes with known attributes and fill in defaults when needed.
 *
 * The pairs should be considered to be all of the attributes which are
 * supported by the caller and given as a list. The returned attributes will
 * only contain the attributes in the $pairs list.
 *
 * If the $atts list has unsupported attributes, then they will be ignored and
 * removed from the final returned list.
 *
 * @since 2.5
 *
 * @param array $pairs Entire list of supported attributes and their defaults.
 * @param array $atts User defined attributes in shortcode tag.
 * @return array Combined and filtered attribute list.
 */
function shortcode_atts($pairs, $atts) {
 $atts = (array)$atts;
 $out = array();
 foreach($pairs as $name => $default) {
 if ( array_key_exists($name, $atts) )
  $out[$name] = $atts[$name];
 else
  $out[$name] = $default;
 }
 return $out;
}
Copy after login

Articles you may be interested in:

  • Analysis of the use of PHP functions used to obtain recent articles in WordPress development
  • Introduction to the use of PHP functions related to custom menus in WordPress development
  • Usage analysis of the PHP function used to obtain the search form in WordPress
  • Use the wp_count_posts function in WordPress to count the number of articles
  • Detailed explanation of calling comment templates and looping output comments in WordPress PHP function
  • Explanation of simple steps to add Google search function in WordPress
  • Detailed explanation of get_post and get_posts functions in WordPress development Using
  • Analysis of post_class and get_post_class functions in WordPress
  • Usage analysis of get_post_custom() function in WordPress development
  • Install and use the video player plug-in Hana Flv Player in WordPress
  • Detailed explanation of the use of classification function wp_list_categories in WordPress

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1088769.htmlTechArticleThe implementation of short codes and related function usage skills in WordPress development. WordPress usage skills are actually very simple to implement short codes. We You only need to use a function in WordPress...
Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template