Created
January 25, 2016 09:24
-
-
Save onocom/215e2edbd012d27c7626 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'is_lightning_extend_loop', 'oc_is_extend_loop'); | |
function oc_is_extend_loop() { | |
return true; | |
} | |
add_action( 'lightning_extend_loop', 'oc_extend_loop'); | |
function oc_extend_loop() { | |
// loop | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment