Browse: Home / Hooks /

learndash-focus-header-nav-before

do_action( 'learndash-focus-header-nav-before',  int $course_id,  int $user_id )

Fires before the header nav in the focus template.


Description #


Parameters #

$course_id

(int) Course ID.

$user_id

(int) User ID.


Source #

File: themes/ld30/templates/focus/masthead.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash-focus-header-nav-before action.
 */
add_action(
	'learndash-focus-header-nav-before',
	function( $course_id, $user_id ) {
		// May add any custom logic using $course_id, $user_id

	},
	10,
	2
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.