From 124117fc5175e5d01f1193b9b33e4fba31869c4c Mon Sep 17 00:00:00 2001 From: Adam Wood <1017872+adamwoodnz@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:40:40 +1200 Subject: [PATCH] Theme: Stop showing unpublished courses on lesson cards Fixes https://github.com/WordPress/Learn/issues/2856 --- .../pub/wporg-learn-2024/src/lesson-course-info/index.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wp-content/themes/pub/wporg-learn-2024/src/lesson-course-info/index.php b/wp-content/themes/pub/wporg-learn-2024/src/lesson-course-info/index.php index f1d386995..833d4be37 100644 --- a/wp-content/themes/pub/wporg-learn-2024/src/lesson-course-info/index.php +++ b/wp-content/themes/pub/wporg-learn-2024/src/lesson-course-info/index.php @@ -48,6 +48,12 @@ function render( $attributes, $content, $block ) { return ''; } + $course_published = 'publish' === get_post_status( $course_id ); + + if ( ! $course_published ) { + return ''; + } + $course_title = get_the_title( $course_id ); $course_permalink = get_permalink( $course_id );