'; } return $output; } function seed_csp4_privacy() { $output = ''; if ( get_option( 'blog_public' ) == 0 ) { $output = ""; } return $output; } function seed_csp4_favicon() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $favicon ) ) { $output .= "\n"; $output .= ''; } return $output; } function seed_csp4_customcss() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $custom_css ) ) { $output = ''; } return $output; } function seed_csp4_head() { $o = seed_csp4_get_settings(); extract( $o ); // CSS $output = ''; $output .= "\n"; $output .= ''."\n"; $output .= ''."\n"; if ( is_rtl() ) { $output .= ''."\n"; } $output .= ''."\n"; // Javascript $output .= "\n"; $include_url = includes_url(); $last = $include_url[strlen( $include_url )-1]; if ( $last != '/' ) { $include_url = $include_url . '/'; } if ( empty( $enable_wp_head_footer ) ) { $output .= ''."\n"; } $output .= ''."\n"; // Header Scripts if ( !empty( $header_scripts ) ) { $output .= "\n"; $output .= $header_scripts; } // Google Analytics if ( !empty( $ga_analytics ) ) { $output .= "\n"; $output .= $ga_analytics; } return $output; } function seed_csp4_footer() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if(!empty($bg_cover)){ $output .= ''; } if ( !empty( $footer_scripts ) ) { $output .= "\n"; $output .= $footer_scripts; } return $output; } function seed_csp4_logo() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $logo ) ) { $output .= ""; } return $output; } function seed_csp4_headline() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $headline ) ) { $output .= '

'.$headline.'

'; } return $output; } function seed_csp4_description() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $description ) ) { $output .= '
'.shortcode_unautop(wpautop(convert_chars(wptexturize($description)))).'
'; } return $output; } function seed_csp4_append_html() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $append_html) ) { $output .= '
'.$append_html.'
'; } return $output; } function seed_csp4_credit() { $o = seed_csp4_get_settings(); extract( $o ); $output = ''; if ( !empty( $footer_credit ) ) { $output = '
'; $output .= ''; $output .= '
'; } return $output; }