Skip to content

Commit

Permalink
add ability to filter overall seo output
Browse files Browse the repository at this point in the history
  • Loading branch information
jGRUBBS committed May 20, 2024
1 parent dcbea12 commit 5a9918c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ function get_seo_data( $id, $type ) {
array_push( $meta, $piece );
}

$meta = apply_filters( 'ep_seo_meta', $meta );

$meta = apply_filters( 'ep_seo_meta', $meta );
$output = array( 'meta' => $meta );
$output = apply_filters( 'ep_seo_output', $output );

if ( $title ) {
$output['title'] = $title;
Expand Down

0 comments on commit 5a9918c

Please sign in to comment.