PluginProbe
Friends / 2.7.8
Friends v2.7.8
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / frontend / parts / content-status.php

content-status.php in Friends 2.7.8, at templates/frontend/parts/content-status.php

18 lines 589 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This template contains the part for a post-format status on /friends/.
4 *
5 * @version 1.0
6 * @package Friends
7 */
8
9 $template_loader = Friends\Friends::template_loader();
10 ?>
11 <article id="post-<?php the_ID(); ?>" <?php post_class( 'column col-10 col-sm-12 col-ml-auto' ); ?>>
12 <?php
13 $template_loader->get_template_part( 'frontend/parts/header', get_post_format(), $args );
14 $template_loader->get_template_part( 'frontend/parts/entry-content', get_post_format(), $args );
15 $template_loader->get_template_part( 'frontend/parts/footer', get_post_format(), $args );
16 ?>
17 </article>
18