90%
top of page

Add a Title

Add a Title
Published Date
Published Date
Tags
0 Comments
Views
Share Post

Comment

successMessage

errorMessage

Add a Title

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

No comments yet. Be the first to comment!"

Related Posts

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

  • Writer: @lan Design
    @lan Design
  • Dec 29, 2023
  • 1 min read

Updated: Nov 29, 2024



import wixData from 'wix-data';
import wixLocation from 'wix-location';

$w.onReady(function () {

 // TODO: write your page related code here...
    updateGallery() 
});

function updateGallery  () {
wixData.query("Blog/Posts").descending("lastPublishedDate").find().then(async (res) => {

 if (res) {

 let info = [];
            res.items.map(async (elem) => {

 if (elem["coverImageDisplayed"]) {

 info.push({ "type": "image", "src": elem["coverImage"], "alt": elem["title"], "title": elem["title"], "description": elem["excerpt"], "link": elem["postPageUrl"] })

                }
            })

            $w("#gallery1").clickAction = "link";

            $w("#gallery1").items = await info.slice(0, 5); // AMOUNT OF SLIDE

        } else {

            $w("#gallery1").collapse()
        }
    })
}

Have fun!

Comments


bottom of page