Parameter | Explanation |
---|---|
$template | Passes one parameter to the filter, $template is the current path to the appropriate file for the post type as found in the active child theme or parent theme (if no child theme in place or child theme has lower ranked templates. See wordpress template hierarchy for more details). |
You must return $template
even if not modifying. If this confuses you, look at examples where apply_filter()
has been used in code
You should not set up variables here for use later, there are better hooks for this.
A useful program flow for this filter is:
$template
includes our custom post type name --> template hierarchy!!