PluginProbe
WP Ultimate Post Grid / 1.7.2
WP Ultimate Post Grid v1.7.2
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / addons / custom-templates / templates / general / space.php

space.php in WP Ultimate Post Grid 1.7.2, at addons/custom-templates/templates/general/space.php

30 lines 645 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class WPUPG_Template_Space extends WPUPG_Template_Block {
4
5 public $non_breaking;
6
7 public $editorField = 'space';
8
9 public function __construct( $type = 'space' )
10 {
11 parent::__construct( $type );
12 }
13
14 public function non_breaking( $non_breaking )
15 {
16 $this->non_breaking = $non_breaking;
17 return $this;
18 }
19
20 public function output( $post, $args = array() )
21 {
22 if( !$this->output_block( $post, $args ) ) return '';
23
24 $output = $this->before_output();
25
26 $output .= $this->non_breaking ? '&nbsp;' : ' ';
27
28 return $this->after_output( $output, $post );
29 }
30 }