Example #1
0
<?php

/**
 * Automagic integration for infinite requests.
 * 
 * Unlike the other integration templates this file will be loaded
 * for infinite scroll requests regardless of the integration setting if no
 * infinite scroll template exists.
 * 
 * @package Webcomic
 * @uses the_webcomic()
 */
?>

<div class="integrated-webcomic">
	<div class="webcomic-img"><?php 
the_webcomic("full");
?>
</div><!-- .webcomic-img -->
</div><!-- .integrated-webcomic -->
Example #2
0
 * @uses the_webcomic_collections()
 * @uses the_webcomic_storylines()
 * @uses the_webcomic_characters()
 */
?>
<div class="integrated-webcomic">
	<nav class="webcomic-above"><?php 
first_webcomic_link();
previous_webcomic_link();
random_webcomic_link();
next_webcomic_link();
last_webcomic_link();
?>
</nav><!-- .webcomic-above -->
	<div class="webcomic-img"><?php 
the_webcomic("full", "next");
?>
</div><!-- .webcomic-img -->
	<nav class="webcomic-below"><?php 
first_webcomic_link();
previous_webcomic_link();
random_webcomic_link();
next_webcomic_link();
last_webcomic_link();
?>
</nav><!-- .webcomic-below -->
</div><!-- .integrated-webcomic -->
<article id="post-<?php 
the_ID();
?>
" <?php 
<?php

/**
 * The default template for displaying content
 *
 * Used for both webcomic lists using only the thumbnail for my custom archives
 *
 * @package WordPress
 */
?>

<li>	
	<a href="<?php 
the_permalink();
?>
" rel="bookmark">
	<?php 
the_webcomic('thumbnail');
?>
	</a>
</li>
Example #4
0
?>
		
		<li id= "webcomic-nav-right-btn" class="webcomic-nav-button" ><?php 
next_webcomic_link("%link", "<span>Próxima Página</span> &rsaquo;");
?>
</li>
		<li id= "webcomic-nav-rightmost-btn" class="webcomic-nav-button" ><?php 
last_webcomic_link("%link", "<span>Última Página</span> &raquo;", true);
?>
</li>
	</ul>
</nav>
<div id="webcomic-display-image" class="webcomic-image-wrapper" >

<?php 
the_webcomic('full', "next");
?>
 
		
</div>
<nav id="webcomic-display-nav-below" class="webcomic-nav-wrapper" >
	<ul id="webcomic-nav-up" class="webcomic-nav">
		<li id= "webcomic-nav-leftmost-btn" class="webcomic-nav-button" ><?php 
first_webcomic_link("%link", "&laquo; <span>Primeira Página</span>", true);
?>
</li>
		<li id= "webcomic-nav-left-btn" class="webcomic-nav-button" ><?php 
previous_webcomic_link("%link", "&lsaquo; <span>Página Anterior</span>");
?>
</li>