Skip to content

Instantly share code, notes, and snippets.

View pascallammers's full-sized avatar
🏠
Working from home

Pascal Lammers pascallammers

🏠
Working from home
  • Stay Digital UG (haftungsbeschränkt)
  • Deutschland
View GitHub Profile
@pascallammers
pascallammers / mcp.json
Created October 7, 2025 18:30
MCP Factory AI
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
],
"disabled": false
}
}
<?php
// add hook
add_filter( 'wp_nav_menu_objects', 'my_wp_nav_menu_objects_sub_menu', 10, 2 );
// filter_hook function to react on sub_menu flag
function my_wp_nav_menu_objects_sub_menu( $sorted_menu_items, $args ) {
if ( isset( $args->sub_menu ) ) {
$root_id = 0;