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 | |
// E.g. title or rel attritutes. | |
// via https://wordpress.org/support/topic/need-previous_posts_link-next_posts_link-has-title-and-rel#post-1068032 | |
add_filter('next_posts_link_attributes', 'get_next_posts_link_attributes'); | |
add_filter('previous_posts_link_attributes', 'get_previous_posts_link_attributes'); | |
if (!function_exists('get_next_posts_link_attributes')){ | |
function get_next_posts_link_attributes($attr){ | |
$attr = 'rel="myrel" title="mytitle"'; |
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
// Reference: https://codex.wordpress.org/Function_Reference/wp_get_archives | |
<select class="turnintodropdown" name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;"> | |
<option value=""><?php echo esc_attr( __( 'Monthly Archives' ) ); ?></option> | |
<?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option' ) ); ?> | |
</select> |
NewerOlder