Skip to content

Instantly share code, notes, and snippets.

View jbjanot's full-sized avatar

Jean-Baptiste Janot jbjanot

View GitHub Profile
@jbjanot
jbjanot / Wordpress menu on the fly
Created April 26, 2014 16:32
WordPress menu on the fly
<?php
// it needs to be attached to a hook like save_post or something similar
$pages = get_posts(
array(
'post_type' => 'page',
'posts_per_page' => - 1
)
);
$projects = get_posts(
array(