Hej flinke folk der sikkert gerne vil hjælpe mig!
Jeg har dette loop i min home.php, som kører som det skal med de posts jeg laver. Intet problem der.
Men så vil jeg gerne have et loop længere nede af siden der viser en coutom post type, som jeg har lavet med "Custom Content Type Manager" pluginet.
Men jeg kan ikke få loopet til at vise siderne jeg laver med denne nye post type.
min nye Posttype har navnet single-detgamle.php og har koden
<?php
/**
* Sample template for displaying single detgamlevig posts.
* Save this file as as single-detgamlevig.php in your current theme.
*
* This sample code was based off of the Starkers Baseline theme: http://starkerstheme.com/
*/
get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php the_author(); ?>
<?php the_excerpt(); ?>
<h2>Custom Fields</h2>
<!-- You have not associated any custom fields with this post-type. Be sure to add any desired custom fields to this post-type by clicking on the "Manage Custom Fields" link under the Custom Content Type menu and checking the fields that you want. -->
<?php endwhile; // end of the loop. ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Mit loop der virker ser således ud:
--------------------------------------------------------------------------
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'home' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>