Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: assigned.php
<?php /** * Admin View: Lesson, Quiz assigned Meta box */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); global $post; $courses = learn_press_get_item_courses( $post->ID ); ?> <div class="lp-item-assigned"> <?php if ( $courses ) : ?> <ul> <?php foreach ( $courses as $course ) : ?> <li> <strong><a href="<?php echo get_edit_post_link( $course->ID ); ?>" target="_blank"><?php echo get_the_title( $course->ID ); ?></a></strong> — <a href="<?php echo learn_press_get_course_permalink( $course->ID ); ?>" target="_blank"><?php esc_html_e( 'View', 'learnpress' ); ?></a> </li> <?php endforeach; ?> </ul> <?php else : esc_html_e( 'Not assigned yet', 'learnpress' ); endif; ?> </div>