• Been playing around with wordpress for about a week now need some help separating the text and images from the content output. Basically I want the gallery/images in one div and the text in another. Here’s my website which im trying to seperate the text and drop it down to the bottom of the page.

    Code

    <?php
    /**
     * Single project description
     *
     * @author 		WooThemes
     * @package 	Projects/Templates
     * @version     1.0.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    
    global $post;
    
    if ( ! $post->post_content ) return;
    ?>
    <div class="single-project-description" itemprop="description">
    
    	<?php echo apply_filters( 'projects_description', the_content() ); ?>
    
    </div>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Striping content for text then pictures’ is closed to new replies.