Skip to content

Instantly share code, notes, and snippets.

View swinggraphics's full-sized avatar

Greg Perham swinggraphics

  • Swing Graphics
  • Northampton, MA
View GitHub Profile
@swinggraphics
swinggraphics / Relevanssi HTML Tag Weights
Last active February 21, 2022 15:36 — forked from msaari/functions.php
Increases the weight for specified HTML tags
<?php
function rlv_html_tag_boost( $content ) {
$weightings = [
'h1' => 5,
'h2' => 4,
'h3' => 2,
'strong' => 1,
];
foreach ( $weightings as $tag => $weight ) {