首页 > 解决方案 > How i can call my plugin use shortcode Wordpress?

问题描述

I have a plugin file. It has html and php code. I would like to call it with shortcode.

标签: phpwordpress

解决方案


Hi You can do all stuff into

 function myshort( $atts ) {

//add your html php code here

    add_shortcode( 'my_short', 'myshort' );

then use shortocde [my_short] in your pages


推荐阅读