Viewing 1 replies (of 1 total)
  • Theme Author cafeserendipity21

    (@cafeserendipity21)

    Hi @valorietucker,
    first use a chidl-theme like you always should do. Herefor use a plugin like this one Child Theme Configurator. After activating it, create this folder inside your child-theme: quicksand-child/template-parts/ and add this file inside: content.php. Now just add the following:

    <!--template: content-->
    <!-- post --> 
    <article id="post-<?php the_ID(); ?>" <?php post_class("card"); ?>>   
        <!--post thumbnail-->
        <?php quicksand_entry_thumbnail(); ?> 
    
        <!--post title-->
        <?php quicksand_entry_title(); ?>
    
        <!--post-meta--> 
        <?php quicksand_entry_meta(); ?>
    
        <!--post-content--> 
        <?php 
        //if (!is_singular()) {
        //    quicksand_entry_excerpt();
        //} else { 
            quicksand_the_entry_content(); 
        //}
        ?> 
        
        <!--edit-link-->
        <?php quicksand_entry_tags(); ?> 
        
        <!--author-bio-->
        <?php quicksand_author_biography(); ?> 
        
        <!--edit-link-->
        <?php quicksand_edit_post(); ?> 
    
    </article><!-- .post-->  

    As you can see I’ve just commented out a view lines from the original.
    That’s it ??

Viewing 1 replies (of 1 total)
  • The topic ‘Read More tag’ is closed to new replies.