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 | |
// Check if the plugin has been activated | |
if( function_exists( 'single_latest_posts' ) ) { | |
/** | |
* Custom parameters | |
* Set only those you want to use | |
*/ | |
$parameters = array( | |
'title' => 'Luxury', | |
'title_only' => 'false', |
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 | |
// Check if the plugin has been activated | |
if( function_exists( 'network_latest_posts' ) ) { | |
/** | |
* Custom Parameters | |
* Set only those you want to use | |
*/ | |
$parameters = array( | |
'title' => 'Recent Articles' | |
'title_only' => 'false', |
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
/* | |
* Single Latest Posts Lite v1.2.5 | |
* | |
* Copyright 2007 - 2013 L'Elite | |
* Licensed under the GPL v2.0 | |
* http://www.gnu.org/licenses/gpl-2.0.html | |
* | |
* Great and ugly things aren't as good | |
* as great and beautiful things ;) | |
*/ |
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 | |
/* | |
Template Name: SLPosts | |
*/ | |
/* Include header */ | |
get_header(); | |
?> | |
<!-- Template sub-parent wrapper --> | |
<div class="inner-page"> | |
<!-- Template content wrapper --> |
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: Network Latest Posts | |
Plugin URI: http://en.8elite.com/network-latest-posts | |
Description: Display the latest posts from the blogs in your network using it as a function, shortcode or widget. | |
Version: 3.5.4 | |
Author: L'Elite | |
Author URI: http://laelite.info/ | |
*/ | |
/* Copyright 2012 L'Elite (email : [email protected]) |
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
/* | |
* Single Latest Posts Lite v1.3 | |
* | |
* Copyright 2007 - 2013 L'Elite | |
* Licensed under the GPL v2.0 | |
* http://www.gnu.org/licenses/gpl-2.0.html | |
* | |
* Great and ugly things aren't as good | |
* as great and beautiful things ;) | |
*/ |
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 | |
/** | |
* Functions, which deal with URLs: manipulation, generation | |
*/ | |
/** | |
* Gives the path of an URL | |
* | |
* @param string $url Optional. The default is the GlotPress URL | |
*/ |
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 | |
/** | |
* Loads needed libraries and does the preliminary work. You should not have to | |
* edit this file. Everything should be configurable from the outside. Starts the | |
* routing logic in the end. | |
*/ | |
if ( defined( 'GP_DEBUG' ) && GP_DEBUG ) { | |
if ( defined( 'E_DEPRECATED' ) ) | |
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT ); |
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 | |
/** | |
* Registration Class | |
* | |
* Allow users to create new accounts | |
*/ | |
class GP_Route_Register extends GP_Route_Main { | |
// GET variables | |
function register_get() { | |
// If user is already logged in |
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 | |
gp_title( sprintf( __('%s < GlotPress'), __('Login') ) ); | |
gp_breadcrumb( array( | |
__('Become a Translator'), | |
) ); | |
gp_tmpl_header(); | |
?> | |
<h2><?php _e('Become a Translator'); ?></h2> | |
<script type="text/javascript"> | |
var RecaptchaOptions = { |
OlderNewer