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
| <!-- wp:columns {"className":"clear three-one"} --> | |
| <div class="wp-block-columns has-2-columns clear three-one"><!-- wp:column --> | |
| <div class="wp-block-column"><!-- wp:heading {"align":"center"} --> | |
| <h2 style="text-align:center" id="mce_5">Professional Experience</h2> | |
| <!-- /wp:heading --> | |
| <!-- wp:paragraph --> | |
| <p>Text here...</p> | |
| <!-- /wp:paragraph --> |
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
| <?php | |
| add_filter( 'the_content', 'add_thing_to_search_page' ); | |
| function add_thing_to_search_page( $content ) { | |
| // Check if it's the search page | |
| if ( is_search() ) { | |
| $mycode = 'Put your HTML here'; | |
| return $mycode . $content; |
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
| <?php | |
| /********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
| /* Change Open Graph image URLs in Yoast SEO for categories + Taxonomy Images plugin */ | |
| add_filter( 'wpseo_opengraph_image', 'change_opengraph_image_url' ); | |
| function change_opengraph_image_url( $url ) { | |
| $image_url = apply_filters( 'taxonomy-images-queried-term-image-url', '' ); | |
| if (is_category() && $image_url) { | |
| return $image_url; |
OlderNewer