Skip to content

Instantly share code, notes, and snippets.

@jquimera
jquimera / callScript.html
Created August 25, 2019 17:17
Chamadas Ajax com JQuery e PHP
<script src="script.js"></script>
@jquimera
jquimera / index.php
Created September 18, 2019 13:29 — forked from anonymous/index.php
WP Query loop - in multiples of 3 posts in containing div.
<?php
$currentID = get_the_ID();
$featured = new WP_Query(array(
'post_type' => 'post',
'order' => 'DESC',
'posts_per_page' => 8,
'post__not_in' => array($currentID)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.3.6/slick.css"/>
<style>
.menu {
text-align: center;
}