1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } if( ! class_exists( 'Penci_Gutenberg_Blockquote' ) ): class Penci_Gutenberg_Blockquote {
public function render( $attributes, $content ) {
$param = ' wpblock="true"'; if( $attributes ){ foreach ( (array)$attributes as $k => $v ){ if( $v && 'content' != $k ){ $param .= ' ' . $k . '="' . $v . '"'; } } }
return do_shortcode( '[penci_blockquote ' . $param . ']' . ( $attributes['content'] ? $attributes['content'] : '' ) . '[/penci_blockquote]' ); } public function attributes() { $options = array( 'content' => array( 'type' => 'string', 'default' => esc_html__( 'Add Quote Content...', 'penci-framework' ), ), 'author' => array( 'type' => 'string', 'default' => esc_html__( 'Add Quote Author...', 'penci-framework' ), ), 'style' => array( 'type' => 'string', 'default' => '' ), 'align' => array( 'type' => 'none', 'default' => '' ), 'font_weight' => array( 'type' => 'string', 'default' => '' ), 'font_style' => array( 'type' => 'string', 'default' => '' ), 'uppercase' => array( 'type' => 'string', 'default' => '' ), 'text_size' => array( 'type' => 'string', 'default' => '' ), );
return $options; } } endif;
|