php semplice shortcode con contenuto

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php semplice shortcode con contenuto相关的知识,希望对你有一定的参考价值。

<?php
//con il contenuto in mezzo
function titoletto1($atts, $content = null) {
	return "<h3 class=\"titoletto1\">$content</h3>";
}
add_shortcode('titoletto1','titoletto1');

//paddo un parametro
function vSeparator( $atts ){
	$attributi = shortcode_atts( array(
        'height' => 14
    ), $atts );
    $height = $attributi['height'];
    
    return "<hr class=\"vSeparator\" style=\"height:" . $height . "px\">";
}
add_shortcode( 'vSeparator', 'vSeparator' );

以上是关于php semplice shortcode con contenuto的主要内容,如果未能解决你的问题,请参考以下文章

php 媒体查询ShortCode

php 删除新主题的Divi Shortcodes

php WP Shortcode加载远程内容

php ShortCodes和Visual composer

php 如何在Blooming中启用Shortcode

php WordPress Shortcode返回当前页面标题。