Skip to content

Instantly share code, notes, and snippets.

@danmaby
Last active March 30, 2018 16:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danmaby/908eee3dd48ee96849e047d2230e5687 to your computer and use it in GitHub Desktop.
Save danmaby/908eee3dd48ee96849e047d2230e5687 to your computer and use it in GitHub Desktop.
Remove "Archives:" from WP Astra Advanced Header Add-on
<?php
// Filter out "archive" from archive page title
function wpldn_remove_archive_text( $value, $original_value, $params ) {
$value = str_replace( $params->'Archives: ', ' ', $value );
return $value;
}
add_filter( 'ast-advanced-headers-title', 'wpldn_remove_archive_text', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment