Skip to content

Instantly share code, notes, and snippets.

View asha23's full-sized avatar
🎩
Working from home

Ash Whiting asha23

🎩
Working from home
View GitHub Profile
@asha23
asha23 / WP 1 Page Loop
Created July 24, 2013 10:56
Loop for Single Page infinite scroll
<?php
get_header();
?>
<div id="container">
<a name="top"></a>
<?php
$args = array(
'sort_order' => 'ASC',
'sort_column' => 'menu_order', //post_title
'hierarchical' => 1,
@asha23
asha23 / ios javascript
Created August 12, 2013 18:25
Returns true or false if IOS.
iOSDevice = !!navigator.platform.match(/iPhone|iPod|iPad/);