Created
June 5, 2023 14:40
-
-
Save espenmn/669ea6f552200e316dd70d4ad5a2e487 to your computer and use it in GitHub Desktop.
Add breadcrumbs wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function get_breadcrumb() { | |
| echo '<a href="'.home_url().'" rel="nofollow">Home</a>'; | |
| if (is_category() || is_single()) { | |
| echo " | "; | |
| the_category(' •'); | |
| if (is_single()) { | |
| echo " | "; | |
| the_title(); | |
| } | |
| } elseif (is_page()) { | |
| echo " | "; | |
| echo the_title(); | |
| } elseif (is_search()) { | |
| echo " | Search Results for… "; | |
| echo '"<em>'; | |
| echo the_search_query(); | |
| echo '</em>"'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment