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 | |
| session_start(); | |
| add_filter( 'posts_orderby', 'randomise_with_pagination' ); | |
| function randomise_with_pagination( $orderby ) { | |
| if( is_front_page() ) { | |
| // Reset seed on load of initial archive page |
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 | |
| /** | |
| * Plugin Name: JSON API - Media Controller | |
| * Version: 0.0.1 | |
| * Author: Eric Mulder | |
| * Author URI: https://emdevelopment.nl | |
| * Plugin URI: https://emdevelopment.nl | |
| * Description: Extensions to the JSON API plugin, to enable file upload | |
| * Licence: GPLv2+ | |
| */ |