Web sitem için alexa meta tag eklemeye çalışıyordum. Header.php bölümüne ekleneceğini söylediler bende o bölüme girip kodu yapıştırdım ancak şuanda sitem açılmıyor.

Parse error: syntax error, unexpected $end in /home/markaloj/public_html/wp-content/themes/heap/header.php on line 173

Bu hatayı alıyorum sitemden. İnsanlar parantez yada başka bir sorun olduğunu söylüyorlar ancak en ufak bilgim bile yok internetten okuduğum şeyler ile yapmaya çalışıyorum lütfen yardım eder misiniz. Header kodu aşağıdaki gibi şuanda sanırım yanlış bir şeyler yaptım.

/**
* The Header for our theme
* Displays all of the section and everything up till the main content
* @package Heap
* @since Heap 1.0
*///detect what type of content are we displaying
$schema_org = '';
if ( is_single() ) {
$schema_org .= ' itemscope itemtype="http://schema.org/Article"';
} else {
$schema_org .= ' itemscope itemtype="http://schema.org/WebPage"';
}
?>





echo $schema_org; ?>>








<?php wp_title( '|', true, 'right' ); ?>


/**
* One does not simply remove this and walk away alive!
*/
wp_head(); ?>

$class_name = 'header--sticky';

if ( wpgrade::option( 'nav_placement' ) == 'top' ) {
$class_name .= ' nav-position-top';
}
if ( wpgrade::option( 'nav_borders' ) == 0 ) {
$class_name .= ' nav-borders-hide';
}

if ( wpgrade::option( 'nav_separators' ) == 'dots' ) {
$class_name .= ' nav-separator-dots';
}
if ( wpgrade::option( 'nav_separators' ) == 'bars' ) {
$class_name .= ' nav-separator-bars';
}

if ( wpgrade::option( 'nav_dropdown' ) == 'caret' ) {
$class_name .= ' nav-dropdown-caret';
}
if ( wpgrade::option( 'nav_dropdown' ) == 'plus' ) {
$class_name .= ' nav-dropdown-plus';
}

if ( wpgrade::option( 'nav_always_show' ) ) {
$class_name .= ' nav-scroll-show';
} else {
$class_name .= ' nav-scroll-hide';
}

$data_ajaxloading = ( wpgrade::option( 'use_ajax_loading' ) == 1 ) ? 'data-ajaxloading' : '';
$class_name .= ( wpgrade::option( 'use_ajax_loading' ) == 1 ) ? ' animations' : '';
$data_smoothscrolling = ( wpgrade::option( 'use_smooth_scroll' ) == 1 ) ? 'data-smoothscrolling' : '';

//we use this so we can generate links with post id
//right now we use it to change the Edit Post link in the admin bar
$data_currentid = '';
if ( ( wpgrade::option( 'use_ajax_loading' ) == 1 ) ) {
global $wp_the_query;
$current_object = $wp_the_query->get_queried_object();

if ( ! empty( $current_object->post_type ) && ( $post_type_object = get_post_type_object( $current_object->post_type ) ) && current_user_can( 'edit_post', $current_object->ID ) && $post_type_object->show_ui && $post_type_object->show_in_admin_bar ) {
$data_currentid = 'data-curpostid="' . $current_object->ID . '"';
} elseif ( ! empty( $current_object->taxonomy ) && ( $tax = get_taxonomy( $current_object->taxonomy ) ) && current_user_can( $tax->cap->edit_terms ) && $tax->show_ui ) {
$data_currentid = 'data-curpostid="' . $current_object->term_id . '"';
}
} ?>

echo ' ' . $data_ajaxloading . ' ' . $data_currentid . ' ' . $data_smoothscrolling . ' ' ?> >


get_template_part( 'theme-partials/header/search' );
} ?>