Loading...
Loading...
Expert skill for converting any codebase (React/HTML/Next.js) into a pixel-perfect, SEO-optimized, and dynamic WordPress theme.
npx skill4agent add sickn33/antigravity-awesome-skills codebase-to-wordpress-converterthe_title()get_field()the_content()get_template_directory_uri()header.phpfooter.phpwp_head()</head>wp_footer()</body>get_header()get_footer()register_nav_menus()// WRONG: Static replacement that adds wrappers
wp_nav_menu(['theme_location' => 'primary']);
// CORRECT: Preserving original Tailwind classes and structure
wp_nav_menu([
'theme_location' => 'primary',
'container' => false,
'items_wrap' => '<ul class="flex space-x-8">%3$s</ul>',
'walker' => new Custom_Tailwind_Walker()
]);// Source: <img src="/images/logo.png" />
// WP Conversion:
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/logo.png" alt="Logo" />get_page_by_path()functions.phpheader.php