Show tabs with Content Views

Tab can help to organize your content. Here is an example:

Content 1
Content 2
Content 3


You can show tabs easily with Content Views by using below HTML code:

<div class="pt-cv-wrapper">
    <ul class="nav nav-tabs">
        <li class="active"><a data-toggle="tab" href="#tab1" >
            Heading 1
        </a></li>
        <li><a data-toggle="tab" href="#tab2">
            Heading 2
        </a></li>
        <li><a data-toggle="tab" href="#tab3">
            Heading 3
        </a></li>
    </ul>
    <div class="tab-content">
        <div class="tab-pane active" id="tab1">
            Content 1
        </div>
        <div class="tab-pane" id="tab2">
            Content 2
        </div>
        <div class="tab-pane" id="tab3">
            Content 3
        </div>
    </div>
</div>

This is an useful utility to organize content in your WordPress site.

Best regards,

Scroll to Top