All pastes #2053840 Raw Edit

Something

public text v1 · immutable
#2053840 ·published 2011-05-04 15:05 UTC
rendered paste body
<?php /* Template Name: Portefolje */ ?>

<?php // OUTPUT WORDPRESS HEADEREN.
get_header(); ?>  
<?php // VÆLG CUSTOM POST TYPEN.
query_posts( 'post_type=portefolje'); ?>
  <?php // START WORDPRESS LOOPET.
  if (have_posts()) : while (have_posts()) : the_post(); ?>

<div id="side">

  <h1><?php // OUTPUT INDLÆGGETS TITEL.
  the_title(); ?></h1>
  <?php // OUTPUT INDHOLDET AF INDLÆGGET.
  the_content(); ?>
  <p>You are viewing the correct custom page for the custom post type Portefolje</p>
</div>

  <?php // SLUT LOPPET OG HVIS INGEN INDLÆG ER FUNDET.
  endwhile; else: ?>
	<?php // OUTPUT EN FEJL 404.
    error404(); ?>
  <?php // SLUT HVIS SÆTNINGEN.
  endif; ?>
  
<?php // OUTPUT WORDPRESS FOOTEREN.
get_footer(); ?>