• I need a button before post title.
    When i press that button or the title it shows that post content.

    + Post title
    Content here opens only if i press + or post title

    Here is my themes code.

    <header class="entry-title">
    
    <?php the_title(); ?>
    
    <hr>
    
    <?php the_content(); ?>
    
    <hr>
    
    </header>
    • This topic was modified 6 years, 1 month ago by Gustav.
    • This topic was modified 6 years, 1 month ago by Gustav.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Include Bootstrap and rewrite the code to your php files

    https://getbootstrap.com/docs/4.0/components/collapse/

    In your case it can be as under:

    
    <header class="entry-title">
    
    <?php the_title('<div data-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">', '</div>'); ?>
    
    <hr>
    <div class="collapse" id="collapseExample">
    <?php the_content(); ?>
    </div>
    <hr>
    
    </header>
    
    Thread Starter Gustav

    (@4ever16)

    Hi thanks for the reply!
    What do you mean ‘include Bootstrap’ how do i do that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Spoiler TITLE to opens content’ is closed to new replies.