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 | |
class GP_Router { | |
var $api_prefix = 'api'; | |
function __construct( $urls = null ) { | |
if ( is_null( $urls ) ) | |
$this->urls = $this->default_routes(); | |
else |
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( | |
__('Login'), | |
) ); | |
gp_tmpl_header(); | |
?> | |
<h2><?php _e('Login'); ?></h2> | |
<?php do_action( 'before_login_form' ); ?> | |
<form action="<?php echo gp_url_ssl( gp_url_current() ); ?>" method="post" class="login-form"> |
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
/** | |
* Network Latest Posts v3.5.4 | |
* | |
* Align Thumbnails to the Left | |
* | |
* Copyright 2012 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 |
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 | |
/** | |
* This block is found in lines: 630 to 654 | |
* and 848 to 872 from network-latest-posts.php file. | |
*/ | |
// Put a placeholder with the post title | |
switch($thumbnail_filler) { | |
// Placeholder provided by Placehold.it | |
case 'placeholder': | |
echo "<a href='".$all_permalinks[$field->guid]."'><img src='http://placehold.it/".$thumbnail_wh."&text=".$field->post_title."' alt='".$field->post_title."' title='".$field->post_title."' /></a>"; |
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
/** | |
* Network Latest Posts v3.0 | |
* | |
* Copyright 2012 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
/** | |
* Network Latest Posts v3.0 | |
* | |
* Copyright 2012 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 | |
/* | |
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 - 2013 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
<div class="nlposts-container nlposts-ulist-container"> | |
<ul class="nlposts-wrapper nlposts-ulist nav nav-tabs nav-stacked"> | |
<li class="nlposts-ulist-litem"> | |
<ul class="nlposts-ulist-thumbnail thumbnails"> | |
<li class="nlposts-ulist-thumbnail-litem span3"> | |
<div class="thumbnail"> | |
<a href="#"><img src="http://placehold.it/135x135" alt="" title=""></a> | |
<div class="nlposts-caption"> | |
<h3 class="nlposts-ulist-title"> | |
<a href="#">Post Title</a> |
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
<div class="nlposts-container nlposts-block-container"> | |
<div class="nlposts-wrapper nlposts-block content"> | |
<div class="nlposts-block-item"> | |
<ul class="nlposts-block-thumbnail thumbnails"> | |
<li class="nlposts-block-thumbnail-litem span3"> | |
<a href="#"> | |
<img src="http://placehold.it/135x135" alt="" title=""> | |
</a> | |
<div class="nlposts-caption"> | |
<h3 class="nlposts-block-title"> |
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 v1.4.1 | |
* | |
* 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 ;) | |
*/ |