HEX
Server: Apache
System: Linux 65-254-81-60.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: roshanchandy (1003)
PHP: 8.4.12
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/yeshuvabible/www/wp-content/plugins/learnpress-bbpress/templates/forum-link.php
<?php
/**
 * Template for displaying forum link in single course page.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/addons/bbpress/forum-link.php.
 *
 * @author ThimPress
 * @package LearnPress/bbPress/Templates
 * @version 3.0.0
 */

// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;

if ( ! isset( $forum_id ) ) {
	return;
}
?>

<p><?php _e( 'Course Forum:', 'learnpress-bbpress' ); ?>
	<?php
	$lpbb_post_status = get_post_status( get_the_ID() );
	if ( $lpbb_post_status == 'publish' ) {
		?>
		<a class="learn-press-course-forum-link"
			href="<?php echo get_permalink( $forum_id ); ?>"><?php echo get_the_title( $forum_id ); ?></a>
		<?php
	} else {
		?>
		<span class="learn-press-course-forum-link"><?php echo get_the_title( $forum_id ); ?></span>
	<?php } ?>
</p>