Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

114
Views
WordPress posts load more button

i have custom php template for display all posts (from ACF). I need display only first 6 and after click on button load another 6.

My code: JS

<script>
$(document).ready(function(){
  $(".content").slice(0, 6).show();
  $("#loadMore").on("click", function(e){
    e.preventDefault();
    $(".content:hidden").slice(0, 6).slideDown();
    if($(".content:hidden").length == 0) {
      $("#loadMore").text("No Content").addClass("noContent");
    }
  });
  
})
</script>

PHP

    $args = array(
        'posts_per_page' => -1,
        'post_type' => 'dluhopisy',
    );
    $the_query = new WP_Query( $args ); 
    if( $the_query->have_posts() ){
        while ( $the_query->have_posts() ){
            $the_query->the_post();
            $the_id = get_the_id();

HTML

<a href="#" id="loadMore">Load More</a>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!