| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/Civil/civil/pms/wp-content/plugins/theme_support_jamrul/includes/helpers/ |
Upload File : |
<?php
class Bunch_Seo
{
private $options = '' ;
private $meta_info = '' ;
private $posttype = '';
function __construct()
{
global $wp_query, $post_type, $post ;
if(is_admin()) return ;
add_action( 'wp_title', array( $this, 'title' ) );
add_action( 'wp_head', array( $this, 'head' ), 1 );
$this->posttype = $post_type ;
$this->options = _WSH()->option();
}
/**
* Hooked with wp_title
*/
function title( $title )
{
global $wp_query;
$meta_title = $title;
if( is_singular() && !is_front_page() ) $meta_title = $this->single_title( $title ); // if the single post template.
else if( is_tax() || is_category() || is_tag() ) $meta_title = $this->tax_title( $title );
else if( is_home() || is_front_page() ) $meta_title = $this->home_title( $title );
else if( is_archive() ) $meta_title = $this->archive_title( $title );
return $meta_title;
}
function head()
{
if( is_singular() ) $this->single_meta();
if( is_tax() || is_category() || is_tag() ) $this->tax_meta();
if( is_home() || is_front_page() ) $this->home_meta();
else $this->archive_meta();
}
function single_title( $title )
{
$obj = get_queried_object();
$this->meta_info = get_post_meta( get_the_id(), '_bunch_seo_settings', true );
$old = ($title) ? $title : get_bloginfo( 'name' );
extract( (array)$this->meta_info, EXTR_OVERWRITE );
if( !isset( $seo_status ) || !$seo_status ) return $old;
if( $title ) return $title;
else return $old;
}
function tax_title( $title )
{
$object = get_queried_object();
$this->meta_info = get_option( '_bunch_tax_seo_settings'.$object->term_id );
$old = $title;
extract( (array)$this->meta_info, EXTR_OVERWRITE );
if( !isset( $seo_status ) || !$seo_status ) return $old;
if( $title ) return $title;
else return $old;
}
function home_title( $title )
{
$def = array('_enable_seo'=>0, '_seo_home_meta_title'=>'', '_seo_home_meta_description' => '', '_seo_home_meta_keywords' => '');
$theme_options = _WSH()->option();
$atts = shortcode_atts( $def, $theme_options );
$old = ($title) ? $title : get_bloginfo( 'name' );
extract( (array)$atts, EXTR_OVERWRITE );
if( !isset( $_enable_seo ) || !$_enable_seo ) return $old;
if( $_seo_home_meta_title ) return $_seo_home_meta_title;
else return $old;
}
function archive_title( $title )
{
$def = array('_enable_seo'=>0, '_seo_archive_meta_title'=>'', '_seo_archive_meta_description' => '', '_seo_archive_meta_keywords' => '');
$theme_options = _WSH()->option();
$atts = shortcode_atts( $def, $theme_options );
$old = ($title) ? $title : get_bloginfo( 'name' );
extract( (array)$atts, EXTR_OVERWRITE );
if( !isset( $_enable_seo ) || !$_enable_seo ) return $old;
if( $_seo_archive_meta_title ) return $_seo_archive_meta_title;
else return $old;
}
function single_meta()
{
extract( (array)$this->meta_info, EXTR_OVERWRITE );
if( !isset( $seo_status ) || !$seo_status ) return '';
if( isset( $description ) ) echo '<meta name="description" content="'.$description.'" />'."\n";
if( isset( $keywords ) ) echo '<meta name="keywords" content="'.$keywords.'" />'."\n";
echo '<meta name="author" content="'.get_the_author_meta('display_name', bunch_set( get_queried_object(), 'post_author')).'" />'."\n";
}
function tax_meta()
{
extract( (array)$this->meta_info, EXTR_OVERWRITE );
if( !isset( $seo_status ) || !$seo_status ) return '';
if( isset( $description ) ) echo '<meta name="description" content="'.$description.'" />'."\n";
if( isset( $keywords ) ) echo '<meta name="keywords" content="'.$keywords.'" />'."\n";
}
function home_meta()
{
$def = array('_enable_seo'=>0, '_seo_home_meta_title'=>'', '_seo_home_meta_description' => '', '_seo_home_meta_keywords' => '');
$theme_options = _WSH()->option();
$atts = shortcode_atts( $def, $theme_options );
extract( (array)$atts, EXTR_OVERWRITE );
if( !isset( $_enable_seo ) || !$_enable_seo ) return '';
if( isset( $_seo_home_meta_description ) ) echo '<meta name="description" content="'.$_seo_home_meta_description.'" />'."\n";
if( isset( $_seo_home_meta_keywords ) ) echo '<meta name="keywords" content="'.$_seo_home_meta_keywords.'" />'."\n";
}
function archive_meta()
{
$def = array('_enable_seo'=>0, '_seo_archive_meta_title'=>'', '_seo_archive_meta_description' => '', '_seo_archive_meta_keywords' => '');
$theme_options = _WSH()->option();
$atts = shortcode_atts( $def, $theme_options );
extract( (array)$atts, EXTR_OVERWRITE );
if( !isset( $_enable_seo ) || !$_enable_seo ) return '';
if( isset( $_seo_archive_meta_description ) ) echo '<meta name="description" content="'.$_seo_archive_meta_description.'" />'."\n";
if( isset( $_seo_archive_meta_keywords ) ) echo '<meta name="keywords" content="'.$_seo_archive_meta_keywords.'" />'."\n";
}
}