# learnpress/4.4.1/templates/loop/course/loop-begin.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.1. 15 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.1/code/templates/loop/course/loop-begin.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.1/raw/templates/loop/course/loop-begin.php
- Modified: 2026-06-26T11:19:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.1/code/templates/loop/course/loop-begin.php#L10-L20`.

```php
<?php
/**
 * Template for displaying wrap start of archive course within the loop.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/loop/course/loop-begin.php.
 *
 * @author   ThimPress
 * @package  Learnpress/Templates
 * @version  4.0.0
 */

defined( 'ABSPATH' ) || exit();

echo wp_kses_post( apply_filters( 'learn_press_course_loop_begin', '<ul class="learn-press-courses" data-layout="' . learn_press_get_courses_layout() . '">' ) );

```
