Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8986583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T21:35:05+00:00 2026-06-15T21:35:05+00:00

Hi I am a beginner to HTML/CSS/JS and I am trying to create a

  • 0

Hi I am a beginner to HTML/CSS/JS and I am trying to create a web app (FOR MOBILE ONLY) which grabs wordpress posts and inserts them into a slider like FLEXSLIDER. I want my users to be able to swipe through wordpress posts select one and once they have read it, SWIPE to the next post.

Can anybody help me?

How do I get individual WORDPRESS posts into FLEXSLIDER and integrate the slider with the WORDPRESS loop?

If you need more description please ask.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T21:35:06+00:00Added an answer on June 15, 2026 at 9:35 pm

    Firstly, StackOverflow is intended to be used to help you with your code, not write your code for you. Given that you’ve never posted here before I’ll give you the benefit of the doubt. In the future, please give us code examples of what you have tried and explicitly explain what the problem is.

    As far as integrating your posts with Flexslider, that should be easy enough. I’ve not used the plugin before, but I’ll give it a go based on the documentation on the Flexslider site. There are good instructions on how to use the plugin here: http://www.woothemes.com/flexslider/

    First, you’ll need to make sure you have the necessary files linked inside of the<head></head> tags of your header.php file.

    Place these lines in the document head, you may have to adjust the paths to target the files.

    <link rel="stylesheet" href="flexslider.css" type="text/css">
    <script src="jquery.flexslider.js"></script>
    

    Next you’ll need to connect to the flexslider, place the code below in the head right after the two lines I just posted above

    <script type="text/javascript" charset="utf-8">
      $(window).load(function() {
        $('.flexslider').flexslider({
            touch: true, // to allow for touch controls
        });
      });
    </script>
    

    Then you’ll need to integrate a loop with the slider markup. You need to place the below code in the template file for the page you wish to display the slider on.

    <div class="flexslider">
    <ul class="slides">
    
        <?php  
            $post_query = new WP_Query('post_type' => 'post');
            if($post_query->have_posts() ) : while($post_query->have_posts() ) : $post_query->the_post(); ?>
    
        <li>
            <?php the_title(); ?>
            <?php the_content(); ?>
        </li>
    
    </ul>
    </div>
    
    <?php endwhile; ?>
    <?php endif; ?>
    

    Without actually installing the plugin and only by going off of the documentation I think this will work. Let me know if you have any questions. If this gets the job done, please accept my answer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a complete programming beginner. I know a little HTML and the only CSS
I am a beginner at HTML and CSS. the text on my page keeps
So, I'm a beginner with HTML and CSS and all that, and I've attempted
I am a beginner at CSS and HTML and I am coding a landing
I'm a beginner with HTML-CSS-JS and I have this problem : When I'm at
Now, I'm a real beginner, just starting, figuring out things, testing and trying html
i'm a beginner at CSS and trying to do a NETTUTS , but there's
i'm a beginner in HTML and CSS , i've set :hover pseudo class to
i'm a beginner at web development, i've just learned about XHTML 1.0 and CSS
Absolute beginner question: I have a template file index.html that looks like this: ...

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.