????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/shortcodes-ultimate/includes/shortcodes/ |
Upload File : |
<?php su_add_shortcode( array( 'deprecated' => true, 'id' => 'frame', 'callback' => 'su_shortcode_frame', 'name' => __( 'Frame', 'shortcodes-ultimate' ), 'type' => 'wrap', 'group' => 'content', 'atts' => array( 'align' => array( 'type' => 'select', 'values' => array( 'left' => __( 'Left', 'shortcodes-ultimate' ), 'center' => __( 'Center', 'shortcodes-ultimate' ), 'right' => __( 'Right', 'shortcodes-ultimate' ), ), 'default' => 'left', 'name' => __( 'Align', 'shortcodes-ultimate' ), 'desc' => __( 'Frame alignment', 'shortcodes-ultimate' ), ), 'class' => array( 'default' => '', 'name' => __( 'Class', 'shortcodes-ultimate' ), 'desc' => __( 'Extra CSS class', 'shortcodes-ultimate' ), ), ), 'content' => '<img src="http://lorempixel.com/g/400/200/" />', 'desc' => __( 'Styled image frame', 'shortcodes-ultimate' ), 'icon' => 'picture-o', ) ); function su_shortcode_frame( $atts = null, $content = null ) { $atts = shortcode_atts( array( 'style' => 'default', 'align' => 'left', 'class' => '', ), $atts, 'frame' ); su_query_asset( 'css', 'su-shortcodes' ); su_query_asset( 'js', 'su-shortcodes' ); return '<span class="su-frame su-frame-align-' . esc_attr( $atts['align'] ) . ' su-frame-style-' . esc_attr( $atts['style'] ) . su_get_css_class( $atts ) . '"><span class="su-frame-inner">' . do_shortcode( $content ) . '</span></span>'; }