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
--- | |
PLAYWRIGHT_MCP_GUIDELINES | |
--- | |
description: Playwright MCP Usage Guidelines (Comprehensive) | |
globs: **/* | |
filesToApplyRule: **/* | |
alwaysApply: true | |
--- | |
These guidelines detail the usage and parameters for Playwright MCP tools, based on the official documentation, to ensure effective browser interaction. |
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
function hijrt_facetwp_index_row( $params, $class ) { | |
if ( 'average_workout_length' == $params['facet_name'] ) { | |
$raw_value = (int) $params['facet_value']; | |
if ($raw_value > 30) { | |
$params['facet_value'] = 'over-30'; | |
$params['facet_display_value'] = 'More than 30 minutes'; | |
} | |
elseif ( $raw_value >= 20 ) { | |
$params['facet_value'] = '20-30'; |