PluginProbe
Convertful – Your Ultimate On-Site Conversion Tool / trunk
Convertful – Your Ultimate On-Site Conversion Tool vtrunk
trunk 1.0 1.1 1.3 1.4 1.5 1.6 1.7 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8
convertful / functions / shortcodes.php

shortcodes.php in Convertful – Your Ultimate On-Site Conversion Tool trunk, at functions/shortcodes.php

12 lines 460 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined( 'ABSPATH' ) or die( 'This script cannot be accessed directly.' );
2
3 add_action( 'init', 'conv_register_shortcodes', 20 );
4 function conv_register_shortcodes() {
5 add_shortcode( 'convertful', 'conv_handle_shortcode' );
6 add_shortcode( 'optin', 'conv_handle_shortcode' );
7 }
8
9 function conv_handle_shortcode( $atts, $content, $shortcode ) {
10 return isset( $atts['id'] ) ? '<div class="' . $shortcode . '-' . intval( $atts['id'] ) . '"></div>' : '';
11 }
12