Skip to content

Instantly share code, notes, and snippets.

View danjordan's full-sized avatar

Dan Jordan danjordan

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Scroll Test</title>
<style>
.wrapper {
height: 40px;
width: 400px;
overflow: auto;
}
function menu_shortcode( $atts, $content = null ) {
return wp_nav_menu( array(
'echo' => false,
'items_wrap' => '<h3>' . $content . '</h3><ul id="%1$s" class="%2$s">%3$s</ul>',
'menu'=> $content
) );
}
add_shortcode( 'include_menu', 'menu_shortcode' );
@danjordan
danjordan / admin.php
Created June 9, 2011 09:40 — forked from davestevens/admin.php
Example of preg_match
<?php
/* test regex */
$input = array(
'admin/',
'mens-books',
'admin/foo',
'foo/bar',
'min',
'admin'