| 1 | <?php get_header(); ?>
|
|---|
| 2 |
|
|---|
| 3 | <!-- podcast-header -->
|
|---|
| 4 | <div style="margin: 0; padding: 32px; background-color: #0A4B78; color: #FAEBD6">
|
|---|
| 5 | <div style="display: flex; max-width: 960px; margin: 0 auto;flex-wrap: wrap">
|
|---|
| 6 | <div style="margin: 0; width: 320px; text-align: center">
|
|---|
| 7 | <img src="https://i1.wp.com/wordpress.org/news/files/2021/01/wp-briefing-logo.jpg?w=490&ssl=1"
|
|---|
| 8 | style="box-shadow: 0 0 16px rgba(0, 0, 0, 0.5)"
|
|---|
| 9 | width="245" height="245"
|
|---|
| 10 | alt="WP Briefing logo, photo of Josepha Haden Chomphosy" />
|
|---|
| 11 | </div>
|
|---|
| 12 | <div style="margin: 16px 0 0 38px; min-width: 240px; max-width: 520px;">
|
|---|
| 13 | <h2 class="fancy" style="font-family: Georgia, Times, serif;font-weight:bold"> WP Briefing </h2>
|
|---|
| 14 | <p style="margin: 8px 0;font-size:13px;font-style:italic"> The WordPress Podcast </p>
|
|---|
| 15 |
|
|---|
| 16 | <div style="margin: 32px 0;font-size: 13px;font-family:sans-serif">
|
|---|
| 17 | Explore WordPress with Josepha Haden, the project’s executive director, and project co-founder Matt Mullenweg. Learn about where WordPress is going, how we’ll get there, and how you can get involved. Join us today and help democratize publishing!
|
|---|
| 18 | </div>
|
|---|
| 19 |
|
|---|
| 20 | <div style="font-size:13px">
|
|---|
| 21 | <!-- Subscribe links: coming soon -->
|
|---|
| 22 | Podcast available at:
|
|---|
| 23 | <a href="https://pca.st/uqvvmt8t" style="color:#FAEBD6;font-weight:bold">Pocket Casts</a>,
|
|---|
| 24 | <a rel="RSS" href="https://wordpress.org/news/feed/podcast" style="color:#FAEBD6;font-weight:bold">RSS</a>,
|
|---|
| 25 | <a href="https://open.spotify.com/show/6BxgmE9Qg2TZA8EKZLJ4zS" style="color:#FAEBD6;font-weight:bold">Spotify</a>,
|
|---|
| 26 | <a href="https://www.stitcher.com/show/wp-briefing" style="color:#FAEBD6;font-weight:bold">Stitcher</a>
|
|---|
| 27 | </div>
|
|---|
| 28 | </div>
|
|---|
| 29 | </div>
|
|---|
| 30 | </div>
|
|---|
| 31 | <!-- podcast-header/ -->
|
|---|
| 32 |
|
|---|
| 33 | <div id="pagebody">
|
|---|
| 34 | <div class="wrapper">
|
|---|
| 35 | <div class="col-9">
|
|---|
| 36 | <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|---|
| 37 |
|
|---|
| 38 | <h2 class="fancy">
|
|---|
| 39 | <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
|
|---|
| 40 | </h2>
|
|---|
| 41 |
|
|---|
| 42 | <div class="meta">Posted <?php the_date('','',''); ?> by <a href="<?php the_author_meta( 'url' ); ?>"><?php the_author() ?></a>. Filed under <?php the_category(', '); ?>. <?php edit_post_link(); ?></div>
|
|---|
| 43 | <div class="storycontent">
|
|---|
| 44 | <?php the_content('Read on for more »'); ?>
|
|---|
| 45 | </div>
|
|---|
| 46 |
|
|---|
| 47 | <?php if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) : ?>
|
|---|
| 48 | <div class="feedback">
|
|---|
| 49 | <?php comments_popup_link('', '1 Ping', '% Pings'); ?>
|
|---|
| 50 | </div>
|
|---|
| 51 | <?php endif; ?>
|
|---|
| 52 |
|
|---|
| 53 | <?php comments_template(); // Get wp-comments.php template ?>
|
|---|
| 54 |
|
|---|
| 55 | <?php endwhile; else: ?>
|
|---|
| 56 | <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
|---|
| 57 | <?php endif; ?>
|
|---|
| 58 |
|
|---|
| 59 | <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?>
|
|---|
| 60 |
|
|---|
| 61 | </div>
|
|---|
| 62 | <div class="col-3">
|
|---|
| 63 |
|
|---|
| 64 | <?php
|
|---|
| 65 | add_filter( 'widget_categories_args', function( $args ) {
|
|---|
| 66 | $args['number'] = 15;
|
|---|
| 67 | $args['orderby'] = 'count';
|
|---|
| 68 | $args['order'] = 'DESC';
|
|---|
| 69 |
|
|---|
| 70 | return $args;
|
|---|
| 71 | } );
|
|---|
| 72 |
|
|---|
| 73 | dynamic_sidebar( 'sidebar-1' );
|
|---|
| 74 | ?>
|
|---|
| 75 |
|
|---|
| 76 | </div>
|
|---|
| 77 | </div>
|
|---|
| 78 | </div>
|
|---|
| 79 | <?php get_footer(); ?>
|
|---|