-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive-titles.php
More file actions
38 lines (29 loc) · 739 Bytes
/
archive-titles.php
File metadata and controls
38 lines (29 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Comics Archive by titles
*
* Used to display comic Archives by titles only.
*
* @package WordPress
* @subpackage Strip
*/
get_header(); ?>
<section id="primary"
<main id="content" role="main">
<header class="entry-header">
<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
<?php // call the series by title and list them. ?>
<h2 class="series-title">
<?php
$args = array(
'post_type' => 'comic',
'title_li' => esc_html_e( '', 'strip' ),
);
wp_list_pages( $args );
?>
</h2>
<br>
</main><!-- #content -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>