Support

Account

Forum Replies Created

  • Can you show me where to place your code in my search.php? Thx!

    <?php get_header(); ?>
    
    <section class="content">
    
    	<?php hu_get_template_part('parts/page-title'); ?>
    
    	<div class="pad group">
    
    		<div class="notebox">
    			<?php _e('For the term','hueman'); ?> "<span><?php echo get_search_query(); ?></span>".
    			<?php if ( !have_posts() ): ?>
    				<?php _e('Please try another search:','hueman'); ?>
    			<?php endif; ?>
    			<div class="search-again">
    				<?php get_search_form(); ?>
    			</div>
    		</div>
    
    		<?php if ( have_posts() ) : ?>
    
    			<?php if ( hu_is_checked('blog-standard') ): ?>
    				<?php while ( have_posts() ): the_post(); ?>
    					<?php get_template_part('content-standard'); ?>
    					<?php endwhile; ?>
    			<?php else: ?>
    			<div class="post-list group">
    				<?php global $wp_query; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
              <?php get_template_part('content'); ?>
            <?php if( ( $wp_query->current_post + 1 ) % 2 == 0 ) { echo '</div><div class="post-row">'; }; endwhile; echo '</div>'; ?>
    			</div><!--/.post-list-->
    			<?php endif; ?>
    
    			<?php get_template_part('parts/pagination'); ?>
    
    		<?php endif; ?>
    
    	</div><!--/.pad-->
    
    </section><!--/.content-->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>
  • Thx, John. Looks like a little bit to difficult for me.

    Is it another idea to fill the default field “content” with another acf field?

  • Hi @James,

    you are right. PHP is more difficult to me as other languages like VBScript, VB and Powershell. So, thanks again!

  • My code with unknown php error:

    <h2>Beiträge auf VDT-online.de:</h2>
    
    <?php 
    
    	$terms = get_field('beitragskategorie');
    
    	if( $terms ): ?>
    
    		<ul>
    
    			<?php foreach( $terms as $term ): ?>
    				$term->term_id;
    				<h2><?php echo $term->term_id; ?></h2>
    		
    					$posts = get_posts('numberposts=10&category=' . $value . '&orderby=post_title&order=ASC');
    					foreach($posts as $post) :
    						?>
    							<li>
    								<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    							</li>
    					<?php endforeach;
    
    			<?php endforeach; ?>
    
    		</ul>
    
    	<?php endif; ?>
    
    <?php
Viewing 4 posts - 1 through 4 (of 4 total)