Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter matthijs_b

    (@matthijs_b)

    I figured it out. pb-embedflash plugin doesn’t use the proper wp_enqueue_script to add the necessary jquery. Therefore the file loaded twice,this was to much.
    Anybody encountering this problem, it can be changed in the pb-embedflash plugin at pb-embedflash/inc/inc.functions.php around line 173.

    Thread Starter matthijs_b

    (@matthijs_b)

    Ah, thanx a lot. Still very curious why my thing limited it to five posts, but jbrndt ‘s suggestion works. Thanx a lot!
    I’m using it as follows:

    <?php
    if (is_page('galerie')) {
    	query_posts('category_name=galerie&showposts=99999999'); ?>
    	<?php while (have_posts()) : the_post(); ?>
    
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    					<?php the_title(); ?></a></h2><br />
    					<div class="thecontent"><?php the_content(); ?></div>
    					<div class="postspace">	</div>
    		</div>
    	<?php endwhile; ?>
    <?php
    } else { ...
Viewing 2 replies - 1 through 2 (of 2 total)