Noventa adlı üyeden alıntı: mesajı görüntüle
Kullandığınız tasarımın header kodlamasını ve varsa yönetim panelini incelediniz mi ? Bazı tasarımlarda kendileri kod koydukları için sorun yaşanabiliyor.
header ve single.php'de göremedim böyle bir durum.

header

<?php
ob_start();
echo $cachedosyas;
?>
<?php

/**

 * The Header for our theme.

 *

 * Displays all of the <head> section and everything up till <main>

 * and the left sidebar conditional

 *

 * @since 1.0.0

 */

?><!DOCTYPE html>

<html <?php language_attributes(); ?>>

<head>

	<meta charset="<?php bloginfo( 'charset' ); ?>">

	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<link rel="profile" href="http://gmpg.org/xfn/11">

	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

	<?php wp_head(); ?>

</head>

<?php

$bavotasan_theme_options = bavotasan_theme_options();

$space_class = '';

?>

<body <?php body_class(); ?>>



	<div id="page">



		<header id="header">

			<nav id="site-navigation" class="navbar navbar-inverse navbar-fixed-top" role="navigation">

				<h3 class="sr-only"><?php _e( 'Main menu', 'arcade-basic' ); ?></h3>

				<a class="sr-only" href="#primary" title="<?php esc_attr_e( 'Skip to content', 'arcade-basic' ); ?>"><?php _e( 'Skip to content', 'arcade-basic' ); ?></a>



				<div class="navbar-header">

					<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">

				        <span class="icon-bar"></span>

				        <span class="icon-bar"></span>

				        <span class="icon-bar"></span>

				    </button>

				</div>



				<div class="collapse navbar-collapse">

					<?php

					$menu_class = ( is_rtl() ) ? ' navbar-right' : '';

					wp_nav_menu( array( 'theme_location' => 'primary', 'container' => '', 'menu_class' => 'nav navbar-nav' . $menu_class, 'fallback_cb' => 'bavotasan_default_menu' ) );

					?>

				</div>

			</nav><!-- #site-navigation -->



			 <div class="title-card-wrapper">

                <div class="title-card">

    				<div id="site-meta">

						<?php $tag = ( is_front_page() && is_home() ) ? 'h1' : 'div'; ?>

    					<<?php echo $tag; ?> id="site-title">

    						<a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>

    					</<?php echo $tag; ?>>



    					<?php if ( $bavotasan_theme_options['header_icon'] ) { ?>

    					<i class="fa <?php echo $bavotasan_theme_options['header_icon']; ?>"></i>

    					<?php } else {

    						$space_class = ' class="margin-top"';

    					} ?>



    					<div id="site-description"<?php echo $space_class; ?>>

    						<?php bloginfo( 'description' ); ?>

    					</div>

						<?php

						/**

						 * You can overwrite the defeault 'See More' text by defining the 'BAVOTASAN_SEE_MORE'

						 * constant in your child theme's function.php file.

						 */

						if ( ! defined( 'BAVOTASAN_SEE_MORE' ) ) {

							define( 'BAVOTASAN_SEE_MORE', __( 'Hoş Geldiniz', 'arcade-basic' ) );

						}

						?>

    					<a href="#" id="more-site" class="btn btn-default btn-lg"><?php echo BAVOTASAN_SEE_MORE; ?></a>

    				</div>



    				<?php

    				// Header image section

    				bavotasan_header_images();

    				?>

				</div>

			</div>



		</header>



		<main>

single.php

<?php
/**
 * The Template for displaying all single posts.
 *
 * @since 1.0.0
 */
get_header(); ?>

	<div class="container">
		<div class="row">
			<div id="primary" <?php bavotasan_primary_attr(); ?>>
				<?php while ( have_posts() ) : the_post(); ?>

					<?php get_template_part( 'template-parts/content', get_post_format() ); ?>

					<div id="posts-pagination" class="clearfix">
						<h3 class="sr-only"><?php _e( 'Post navigation', 'arcade-basic' ); ?></h3>
						<div class="previous pull-left"><?php previous_post_link( '%link', __( '&larr; %title', 'arcade-basic' ) ); ?></div>
						<div class="next pull-right"><?php next_post_link( '%link', __( '%title &rarr;', 'arcade-basic' ) ); ?></div>
					</div><!-- #posts-pagination -->

					<?php comments_template( '', true ); ?>

				<?php endwhile; // end of the loop. ?>
			</div>
			<?php get_sidebar(); ?>
		</div>
	</div>

<?php get_footer(); ?>