Skip to content

Instantly share code, notes, and snippets.

@wihodges
wihodges / Craft Load Posts from Element API Jquery Ajax
Created November 30, 2018 18:34
I need a simple way to load more post to a news section in Craft CMS.
<?php
use craft\elements\Entry;
use craft\helpers\UrlHelper;
return [
'endpoints' => [
'news.json' => function() {
return [
'elementType' => Entry::class,
@wihodges
wihodges / Craft Load Posts from Element API Jquery Ajax
Last active November 22, 2022 12:29
I need a simple way to load more post to a news section in Craft CMS using Element API plugin and Jquery
<?php
use craft\elements\Entry;
use craft\helpers\UrlHelper;
return [
'endpoints' => [
'news.json' => function() {
return [
'elementType' => Entry::class,