16 lines
290 B
PHP
16 lines
290 B
PHP
<?php
|
|
/**
|
|
* Template part for displaying posts.
|
|
*
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package Upstudy
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class( 'upstudy-single-lp-course-item' ); ?>>
|
|
<?php
|
|
the_content();
|
|
?>
|
|
</article><!-- #post-## -->
|