This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 11fbbe5
Showing
7 changed files
with
331 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
/** | ||
* This file loads the content when called. | ||
* | ||
* @version 1.0 | ||
*/ | ||
|
||
if ( have_posts() ) : | ||
|
||
// Load content before the loop. | ||
do_action('alnp_load_before_loop'); | ||
|
||
// Check that there are posts to load. | ||
while ( have_posts()) : the_post(); | ||
|
||
// Load content before the post content. | ||
do_action('alnp_load_before_content'); | ||
|
||
// Include the post content. | ||
get_template_part('auto-load-next-post/content', 'single'); | ||
|
||
// Load content after the post content. | ||
do_action('alnp_load_after_content'); | ||
|
||
// End the loop. | ||
endwhile; | ||
|
||
// Load content after the loop. | ||
do_action('alnp_load_after_loop'); | ||
|
||
else : | ||
|
||
// Load content if there are no more posts. | ||
do_action('alnp_no_more_posts'); | ||
|
||
endif; // END if have_posts() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<?php $mvp_featured_img = get_option('mvp_featured_img'); if ($mvp_featured_img == "true") { ?> | ||
<?php if(get_post_meta($post->ID, "mvp_video_embed", true)): ?> | ||
<?php echo get_post_meta($post->ID, "mvp_video_embed", true); ?> | ||
<?php else: ?> | ||
<?php $mvp_show_hide = get_post_meta($post->ID, "mvp_featured_image", true); if ($mvp_show_hide == "hide") { ?> | ||
<?php } else { ?> | ||
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?> | ||
<div id="featured-image" itemscope itemtype="http://schema.org/Article"> | ||
<?php $mvp_post_temp = get_post_meta($post->ID, "mvp_post_template", true); if ($mvp_post_temp == "fullwidth") { ?> | ||
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), '' ); ?> | ||
<?php } else { ?> | ||
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumb' ); ?> | ||
<?php } ?> | ||
<img itemprop="image" src="<?php echo $thumb['0']; ?>" /> | ||
<?php if(get_post_meta($post->ID, "mvp_photo_credit", true)): ?> | ||
<span class="photo-credit"><?php echo get_post_meta($post->ID, "mvp_photo_credit", true); ?></span> | ||
<?php endif; ?> | ||
</div><!--featured-image--> | ||
<?php } ?> | ||
<?php } ?> | ||
<?php endif; ?> | ||
<?php } ?> | ||
<div id="home-main"> | ||
<div id="post-area" itemscope itemtype="http://schema.org/Article" <?php post_class(); ?>> | ||
<h3 class="story-cat"><?php $category = get_the_category(); echo $category[0]->cat_name; ?></h3> | ||
<h1 class="story-title" itemprop="name"><?php the_title(); ?></h1> | ||
<div id="post-info"> | ||
<?php _e( 'By', 'mvp-text' ); ?> <span class="author" itemprop="author"><?php the_author_posts_link(); ?></span> | <time class="post-date" itemprop="datePublished" datetime="<?php the_time('Y-m-d'); ?>" pubdate><?php the_time(get_option('date_format')); ?></time> | ||
</div><!--post-info--> | ||
<?php $socialbox = get_option('mvp_social_box'); if ($socialbox == "true") { ?> | ||
<div class="social-sharing-top"> | ||
<?php mvp_share_count(); ?> | ||
<a href="#" onclick="window.open('http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title(); ?>', 'facebookShare', 'width=626,height=436'); return false;" title="Share on Facebook"><div class="facebook-share"><span class="fb-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('http://twitter.com/share?text=<?php the_title(); ?> -&url=<?php the_permalink() ?>', 'twitterShare', 'width=626,height=436'); return false;" title="Tweet This Post"><div class="twitter-share"><span class="twitter-but1"></span><p><?php _e( 'Tweet', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('http://pinterest.com/pin/create/button/?url=<?php the_permalink();?>&media=<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumb' ); echo $thumb['0']; ?>&description=<?php the_title(); ?>', 'pinterestShare', 'width=750,height=350'); return false;" title="Pin This Post"><div class="pinterest-share"><span class="pinterest-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('https://plusone.google.com/_/+1/confirm?hl=en-US&url=<?php the_permalink() ?>', 'googleShare', 'width=626,height=436'); return false;" title="Share on Google+" target="_blank"><div class="google-share"><span class="google-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="<?php comments_link(); ?>"><div class="social-comments"><p><?php comments_number(__( '0 comments', 'mvp-text'), __('1 comment', 'mvp-text'), __('% comments', 'mvp-text'));?></p></div></a> | ||
</div><!--social-sharing-top--> | ||
<?php } ?> | ||
<div id="content-area"> | ||
<?php the_content(); ?> | ||
<?php wp_link_pages(); ?> | ||
<?php if(get_option('mvp_article_ad')) { ?> | ||
<div id="article-ad"> | ||
<?php $articlead = get_option('mvp_article_ad'); if ($articlead) { echo stripslashes($articlead); } ?> | ||
</div><!--article-ad--> | ||
<?php } ?> | ||
<div class="post-tags"> | ||
<span class="post-tags-header"><?php _e( 'Related Items', 'mvp-text' ); ?></span><?php the_tags('','','') ?> | ||
</div><!--post-tags--> | ||
</div><!--content-area--> | ||
</div><!--post-area--> | ||
<?php $author = get_option('mvp_author_box'); if ($author == "true") { ?> | ||
<div id="author-wrapper"> | ||
<div id="author-info"> | ||
<?php echo get_avatar( get_the_author_meta('email'), '100' ); ?> | ||
<div id="author-text"> | ||
<span class="author-name"><?php the_author_posts_link(); ?></span> | ||
<p><?php the_author_meta('description'); ?></p> | ||
<ul> | ||
<?php $authordesc = get_the_author_meta( 'facebook' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="fb-item"> | ||
<a href="http://www.facebook.com/<?php the_author_meta('facebook'); ?>" alt="Facebook" class="fb-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'twitter' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="twitter-item"> | ||
<a href="http://www.twitter.com/<?php the_author_meta('twitter'); ?>" alt="Twitter" class="twitter-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'pinterest' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="pinterest-item"> | ||
<a href="http://www.pinterest.com/<?php the_author_meta('pinterest'); ?>" alt="Pinterest" class="pinterest-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'googleplus' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="google-item"> | ||
<a href="<?php the_author_meta('googleplus'); ?>" alt="Google Plus" class="google-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'instagram' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="instagram-item"> | ||
<a href="http://www.instagram.com/<?php the_author_meta('instagram'); ?>" alt="Instagram" class="instagram-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'linkedin' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="linkedin-item"> | ||
<a href="http://www.linkedin.com/company/<?php the_author_meta('linkedin'); ?>" alt="Linkedin" class="linkedin-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
</ul> | ||
</div><!--author-text--> | ||
</div><!--author-info--> | ||
</div><!--author-wrapper--> | ||
<?php } ?> | ||
<?php $prev_next = get_option('mvp_prev_next'); if ($prev_next == "true") { ?> | ||
<div class="prev-next-wrapper"> | ||
<div class="prev-post"> | ||
<?php previous_post_link('← '.__('Previous Story', 'mvp-text').' %link', '%title', TRUE); ?> | ||
</div><!--prev-post--> | ||
<div class="next-post"> | ||
<?php next_post_link(''.__('Next Story', 'mvp-text').' → %link', '%title', TRUE); ?> | ||
</div><!--next-post--> | ||
</div><!--prev-next-wrapper--> | ||
<?php } ?> | ||
<?php getRelatedPosts(); ?> | ||
<?php comments_template(); ?> | ||
</div><!--home-main--> | ||
</article> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/* | ||
* Enable Support for Auto Load Next Post. | ||
* | ||
* This provides support for Auto Load Next Post 1.5 and up. | ||
* | ||
* @since 1.0 | ||
*/ | ||
function alnp_braxton_support() { | ||
add_theme_support('auto-load-next-post', array( | ||
'content_container' => '#content-main', | ||
'title_selector' => 'h1.story-title', | ||
'navigation_container' => 'div.prev-next-wrapper', | ||
'comments_container' => 'div#comments', | ||
)); | ||
|
||
// Removes the post navigation from Auto Load Next Post template file. | ||
remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); | ||
} | ||
add_action('after_setup_theme', 'alnp_braxton_support'); | ||
|
||
/** | ||
* Enqueues stylesheet. | ||
* | ||
* @since 1.0 | ||
*/ | ||
function alnp_braxton_scripts() { | ||
// Braxton Theme stylesheet. | ||
wp_enqueue_style('braxton-style-css', get_template_directory_uri() . '/style.css'); | ||
// Child Theme stylesheet. | ||
wp_enqueue_style('alnp-braxton', get_stylesheet_directory_uri() . '/style.css', array('braxton-style-css')); | ||
} | ||
add_action('wp_enqueue_scripts', 'alnp_braxton_scripts'); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Thank you for purchasing support for the Braxton theme. | ||
|
||
Once you have the child-theme installed and activated, please make sure that | ||
the theme selectors under Auto Load Next Posts settings match the following: | ||
|
||
Content container = #content-main | ||
Title Selector = h1.story-title | ||
Navigation Container = div.prev-next-wrapper | ||
Comments Container = div#comments |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
<?php get_header(); ?> | ||
<div id="content-wrapper"> | ||
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | ||
<?php $mvp_post_temp = get_post_meta($post->ID, "mvp_post_template", true); if ($mvp_post_temp == "fullwidth") { ?> | ||
<?php } else { ?> | ||
<div id="content-main"> | ||
<?php } ?> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<?php $mvp_featured_img = get_option('mvp_featured_img'); if ($mvp_featured_img == "true") { ?> | ||
<?php if(get_post_meta($post->ID, "mvp_video_embed", true)): ?> | ||
<?php echo get_post_meta($post->ID, "mvp_video_embed", true); ?> | ||
<?php else: ?> | ||
<?php $mvp_show_hide = get_post_meta($post->ID, "mvp_featured_image", true); if ($mvp_show_hide == "hide") { ?> | ||
<?php } else { ?> | ||
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?> | ||
<div id="featured-image" itemscope itemtype="http://schema.org/Article"> | ||
<?php $mvp_post_temp = get_post_meta($post->ID, "mvp_post_template", true); if ($mvp_post_temp == "fullwidth") { ?> | ||
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), '' ); ?> | ||
<?php } else { ?> | ||
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumb' ); ?> | ||
<?php } ?> | ||
<img itemprop="image" src="<?php echo $thumb['0']; ?>" /> | ||
<?php if(get_post_meta($post->ID, "mvp_photo_credit", true)): ?> | ||
<span class="photo-credit"><?php echo get_post_meta($post->ID, "mvp_photo_credit", true); ?></span> | ||
<?php endif; ?> | ||
</div><!--featured-image--> | ||
<?php } ?> | ||
<?php } ?> | ||
<?php endif; ?> | ||
<?php } ?> | ||
<div id="home-main"> | ||
<div id="post-area" itemscope itemtype="http://schema.org/Article" <?php post_class(); ?>> | ||
<h3 class="story-cat"><?php $category = get_the_category(); echo $category[0]->cat_name; ?></h3> | ||
<h1 class="story-title" itemprop="name"><?php the_title(); ?></h1> | ||
<div id="post-info"> | ||
<?php _e( 'By', 'mvp-text' ); ?> <span class="author" itemprop="author"><?php the_author_posts_link(); ?></span> | <time class="post-date" itemprop="datePublished" datetime="<?php the_time('Y-m-d'); ?>" pubdate><?php the_time(get_option('date_format')); ?></time> | ||
</div><!--post-info--> | ||
<?php $socialbox = get_option('mvp_social_box'); if ($socialbox == "true") { ?> | ||
<div class="social-sharing-top"> | ||
<?php mvp_share_count(); ?> | ||
<a href="#" onclick="window.open('http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title(); ?>', 'facebookShare', 'width=626,height=436'); return false;" title="Share on Facebook"><div class="facebook-share"><span class="fb-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('http://twitter.com/share?text=<?php the_title(); ?> -&url=<?php the_permalink() ?>', 'twitterShare', 'width=626,height=436'); return false;" title="Tweet This Post"><div class="twitter-share"><span class="twitter-but1"></span><p><?php _e( 'Tweet', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('http://pinterest.com/pin/create/button/?url=<?php the_permalink();?>&media=<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumb' ); echo $thumb['0']; ?>&description=<?php the_title(); ?>', 'pinterestShare', 'width=750,height=350'); return false;" title="Pin This Post"><div class="pinterest-share"><span class="pinterest-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="#" onclick="window.open('https://plusone.google.com/_/+1/confirm?hl=en-US&url=<?php the_permalink() ?>', 'googleShare', 'width=626,height=436'); return false;" title="Share on Google+" target="_blank"><div class="google-share"><span class="google-but1"></span><p><?php _e( 'Share', 'mvp-text' ); ?></p></div></a> | ||
<a href="<?php comments_link(); ?>"><div class="social-comments"><p><?php comments_number(__( '0 comments', 'mvp-text'), __('1 comment', 'mvp-text'), __('% comments', 'mvp-text'));?></p></div></a> | ||
</div><!--social-sharing-top--> | ||
<?php } ?> | ||
<div id="content-area"> | ||
<?php the_content(); ?> | ||
<?php wp_link_pages(); ?> | ||
<?php if(get_option('mvp_article_ad')) { ?> | ||
<div id="article-ad"> | ||
<?php $articlead = get_option('mvp_article_ad'); if ($articlead) { echo stripslashes($articlead); } ?> | ||
</div><!--article-ad--> | ||
<?php } ?> | ||
<div class="post-tags"> | ||
<span class="post-tags-header"><?php _e( 'Related Items', 'mvp-text' ); ?></span><?php the_tags('','','') ?> | ||
</div><!--post-tags--> | ||
</div><!--content-area--> | ||
</div><!--post-area--> | ||
<?php $author = get_option('mvp_author_box'); if ($author == "true") { ?> | ||
<div id="author-wrapper"> | ||
<div id="author-info"> | ||
<?php echo get_avatar( get_the_author_meta('email'), '100' ); ?> | ||
<div id="author-text"> | ||
<span class="author-name"><?php the_author_posts_link(); ?></span> | ||
<p><?php the_author_meta('description'); ?></p> | ||
<ul> | ||
<?php $authordesc = get_the_author_meta( 'facebook' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="fb-item"> | ||
<a href="http://www.facebook.com/<?php the_author_meta('facebook'); ?>" alt="Facebook" class="fb-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'twitter' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="twitter-item"> | ||
<a href="http://www.twitter.com/<?php the_author_meta('twitter'); ?>" alt="Twitter" class="twitter-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'pinterest' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="pinterest-item"> | ||
<a href="http://www.pinterest.com/<?php the_author_meta('pinterest'); ?>" alt="Pinterest" class="pinterest-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'googleplus' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="google-item"> | ||
<a href="<?php the_author_meta('googleplus'); ?>" alt="Google Plus" class="google-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'instagram' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="instagram-item"> | ||
<a href="http://www.instagram.com/<?php the_author_meta('instagram'); ?>" alt="Instagram" class="instagram-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
<?php $authordesc = get_the_author_meta( 'linkedin' ); if ( ! empty ( $authordesc ) ) { ?> | ||
<li class="linkedin-item"> | ||
<a href="http://www.linkedin.com/company/<?php the_author_meta('linkedin'); ?>" alt="Linkedin" class="linkedin-but" target="_blank"></a> | ||
</li> | ||
<?php } ?> | ||
</ul> | ||
</div><!--author-text--> | ||
</div><!--author-info--> | ||
</div><!--author-wrapper--> | ||
<?php } ?> | ||
<?php $prev_next = get_option('mvp_prev_next'); if ($prev_next == "true") { ?> | ||
<div class="prev-next-wrapper"> | ||
<div class="prev-post"> | ||
<?php previous_post_link('← '.__('Previous Story', 'mvp-text').' %link', '%title', TRUE); ?> | ||
</div><!--prev-post--> | ||
<div class="next-post"> | ||
<?php next_post_link(''.__('Next Story', 'mvp-text').' → %link', '%title', TRUE); ?> | ||
</div><!--next-post--> | ||
</div><!--prev-next-wrapper--> | ||
<?php } ?> | ||
<?php getRelatedPosts(); ?> | ||
<?php comments_template(); ?> | ||
</div><!--home-main--> | ||
</article> | ||
<?php $mvp_post_temp = get_post_meta($post->ID, "mvp_post_template", true); if ($mvp_post_temp == "fullwidth") { ?> | ||
<?php } else { ?> | ||
</div><!--content-main--> | ||
<?php get_sidebar(); ?> | ||
<?php } ?> | ||
<?php endwhile; endif; ?> | ||
</div><!--content-wrapper--> | ||
</div><!--main-wrapper--> | ||
<?php get_footer(); ?> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Theme Name: Braxton with Auto Load Next Post Support | ||
* Description: Braxton is the premier magazine theme that combines both form and function into one comprehensive Wordpress theme. This sleek, modern theme is retina-ready, fully-responsive and comes with four different ad units, including a custom wallpaper ad. Braxton is also translation-ready, fully-responsive, comes with over 600 Google fonts, a Featured Slider on each category page, infinite scrolling, lazy load, a "sticky" menu bar and sidebar, video/audio posts, post/page slideshows, super quick demo install and so much more! | ||
* Author: MVP Themes | ||
* Author URI: http://themeforest.net/user/mvpthemes | ||
* Theme URI: http://themeforest.net/user/mvpthemes | ||
* Version: 1.0 | ||
* Template: braxton | ||
* Text Domain: braxton | ||
* License: GNU General Public License v2 or later | ||
* License URI: http://www.gnu.org/licenses/gpl-2.0.html | ||
*/ | ||
|
||
hr.post-divider, | ||
hr.alnp-post-divider { | ||
display: none; | ||
} |