2 reacties aan het bekijken - 1 tot 2 (van in totaal 2)
  • In je theme folder heb je een bestand archive.php en/of category.php. Daarin staat deze regel.

    Thread starter mello630

    (@mello630)

    Waar staat dit precies dan ?

    <?php

    /*
    Archive
    Creates the iFeature archive pages.
    Copyright (C) 2011 CyberChimps
    Version 2.0
    */

    global $options, $themeslug, $post, $content_grid; // call globals

    /* Header call. */

    synapse_sidebar_init();
    get_header();

    /* End header. */

    ?>

    <div class=”container”>
    <div class=”row”>
    <?php if (function_exists(‘synapse_breadcrumbs’) && ($options->get($themeslug.’_disable_breadcrumbs’) == “1”)) { synapse_breadcrumbs(); }?>
    </div>
    <div class=”row”>
    <!–Begin @synapse before content sidebar hook–>
    <?php synapse_before_content_sidebar(); ?>
    <!–End @synapse before content sidebar hook–>
    <?php if (have_posts()) : ?>

    <div id=”content” class=”<?php echo $content_grid; ?>”>

    <!–Begin @synapse archive hook–>
    <?php synapse_archive_title(); ?>
    <!–End @synapse archive hook–>

    <!–Begin @synapse before_archive hook–>
    <?php synapse_before_archive(); ?>
    <!–End @synapse before_archive hook–>

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

    <div class=”post_container”>
    <div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>

    <!–Begin @synapse archive hook–>
    <?php synapse_loop(); ?>
    <!–End @synapse archive hook–>

    </div><!–end post_class–>
    </div><!–end post container–>
    <!–Begin @iFeature post bar hook–>
    <?php synapse_post_bar(); ?>
    <!–End @iFeature post bar hook–>

    <?php endwhile; ?>

    <?php else : ?>

    <h2>Nothing found</h2>

    <?php endif; ?>

    <!–Begin @synapse pagination hook–>
    <?php synapse_pagination(); ?>
    <!–End @synapse pagination hook–>

    <!–Begin @synapse after_archive hook–>
    <?php synapse_after_archive(); ?>
    <!–End @synapse after_archive hook–>

    </div><!–end content_padding–>

    <!–Begin @synapse after content sidebar hook–>
    <?php synapse_after_content_sidebar(); ?>
    <!–End @synapse after content sidebar hook–>

    </div><!–end content–>
    </div><!–end row–>
    </div><!–end container–>

2 reacties aan het bekijken - 1 tot 2 (van in totaal 2)

Het onderwerp ‘Weghalen : Archief voor de ‘Nieuws’ Categorie:’ is gesloten voor nieuwe reacties.