HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/madison/public_html/wp-content/plugins/paperio-addons/shortcodes/paperio-title-style.php
<?php
/**
 * Shortcode For Title Style
 */
?>
<?php

/*-----------------------------------------------------------------------------------*/
/* Title Style */
/*-----------------------------------------------------------------------------------*/

if ( ! function_exists( 'paperio_title_style_shortcode' ) ) :
	function paperio_title_style_shortcode( $atts, $content = ""  ) {
			
		extract( shortcode_atts( array(
			'tz_title_style'	=> '',
			'tz_title_text'	=> '',	
			'tz_title_color'	=> '',
			'tz_extra_class' => '',
			'tz_extra_id' => '',
		), $atts ) );
	
		$output = '';
		$classes = array();
		
		$tz_title_style = ( $tz_title_style ) ? $tz_title_style : 'style-one';
		$tz_title_text = ( $tz_title_text ) ? $tz_title_text : '';
		$tz_title_color = ( $tz_title_color ) ? ' style="color:'.$tz_title_color.'"' : '';	
		$tz_extra_class = ( $tz_extra_class ) ? ' '.$tz_extra_class : '';
		$tz_extra_id = ( $tz_extra_id ) ? ' id="'.$tz_extra_id .'"' : '';
			
		/* Check title style */
		switch( $tz_title_style ) {
			case 'style-one':
				if( $tz_title_text ) :
					$output .= '<h5 class="text-mid-gray alt-font'.$tz_extra_class.'"'.$tz_extra_id.$tz_title_color.'><span class="position-reletive z-index-2">'.$tz_title_text.'<span class="rotate background-color"></span></span></h5>';
				endif;
			break;

			case 'style-two':
				if( $tz_title_text ) :
					$output .= '<h5 class="title-border-center text-mid-gray'.$tz_extra_class.'"'.$tz_extra_id.$tz_title_color.'><span>'.$tz_title_text.'</span></h5>';
				endif;
			break;
				
			case 'style-three':
				if( $tz_title_text ) :
					$output .= '<h5 class="text-left title-border-right text-mid-gray'.$tz_extra_class.'"'.$tz_extra_id.$tz_title_color.'><span>'. $tz_title_text.'</span></h5>';
				endif;
			break;
		}
		return $output;
	}
endif;

add_shortcode( 'paperio_title_style', 'paperio_title_style_shortcode' );