Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jangbar

    (@jangbar)

    I created the files I mentioned before for my own child theme. Here is the header.php:

    <!DOCTYPE html>
    <html>

    <head>

    <title>voiiid</title>

    <link rel="stylesheet" href="normalize.css">
    <link rel="stylesheet" href="style.css">

    <!– JQUERY –>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

    </head>

    <body>

    <div class="container">

    and index.php:

    <?php get_header(); ?>
    <?php get_sidebar(); ?>

    <div id="maincontent">

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <div class="postcontainer">

    <div class="posttitlecontainer">
    <div class="posttitle">
    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><h2><?php the_title(); ?></h2></a>
    `<?php if ( ! has_excerpt() ) {
    echo ”;
    }
    else {
    the_excerpt();
    } ?>`

    </div>
    </div>

    <div id="post-<?php the_ID(); ?>" class="<?php the_category(); ?>">

    <?php the_content(); ?>

    </div>

    </div>

    </div>

    </div>

    <?php get_footer(); ?>

    very simple stuff. There has to be something for this to render nothing in the HTML. Thanks again for the help.

    Thread Starter jangbar

    (@jangbar)

    Thanks for the reply. Yes it does. I’ve set up a couple WP sites before using child themes and haven’t had this issue, and everything works fine in my text editor locally.

    Files I uploaded in the child theme folder: header.php, footer.php, index.php, sidebar.php, single.php, style.css

    Thread Starter jangbar

    (@jangbar)

    The domain is https://www.ControlAltDelight.com … any help is appreciated, I’m kinda freaking out! Not sure what to do, completely locked out of the site.

Viewing 3 replies - 1 through 3 (of 3 total)