Sindbad~EG File Manager
<?php
/*
* Security : blocking direct access
* Source : http://codex.wordpress.org/Theme_Development#Template_Files
*/
defined('ABSPATH') or die("Access Restricted");
/*
* http://wordpress.stackexchange.com/a/47909
* http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
*/
function mwp_mobile_ppp($query) {
if (is_admin()) return;
if (is_home()) :
$query->set( 'posts_per_page', mwp_option('mobile-ppp'));
endif;
if(is_archive()) :
$query->set( 'posts_per_page', mwp_option('mobile-ppp-archive'));
endif;
}
add_action( 'pre_get_posts', 'mwp_mobile_ppp');
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists