php 使用参数创建短代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用参数创建短代码相关的知识,希望对你有一定的参考价值。
<?php
/*
* Shortcode
* [vimeo id="355418707"]
*/
function vimeo_video( $atts ) {
// parameters
$params = shortcode_atts([
'id' => ''
], $atts);
// structure
$output = "<div class='embed-container'>";
$output .= "<iframe class='vimeo-video' src='http://player.vimeo.com/video/{$params['id']}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>";
$output .= "</div>";
return $output;
}
add_shortcode( 'vimeo', 'vimeo_video' );
以上是关于php 使用参数创建短代码的主要内容,如果未能解决你的问题,请参考以下文章
php 使用ACF字段创建包含短代码的HREF链接
php 使用ACF字段创建包含短代码的HREF链接
php 创建短代码
php 为管理员选项创建短代码
PHP 如何创建Tweetmeme“Reweweeet”?短代码
PHP 如何创建Tweetmeme“Reweweeet”?短代码