function erexit_png_to_svg_enqueue_scripts() { $theme_js_url = get_stylesheet_directory_uri() . '/js'; // Librería ImageTracer wp_enqueue_script( 'imagetracer', $theme_js_url . '/imagetracer_v1.2.6.js', array(), '1.2.6', true ); // Tu script personalizado wp_enqueue_script( 'png-to-svg-tool', $theme_js_url . '/png-to-svg-tool.js', array('imagetracer'), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'erexit_png_to_svg_enqueue_scripts' ); function erexit_png_to_svg_shortcode() { $html = <<
Arrastra aquí tu imagen (PNG/JPG)
PREVIEW


HTML; return $html; } add_shortcode( 'png_to_svg_tool', 'erexit_png_to_svg_shortcode' );
Contenido del curso
Introduction to version control
Understand the core concepts and benefits of version control systems, especially Git.
0/3
Core git commands and workflows
Learn how to work with Git in daily development—add, commit, push, pull, and merge like a pro.
0/2
Collaborating with github
Use GitHub to host repositories, collaborate with others, and work on real-world development workflows.
0/2
Advanced git features
Master Git's advanced capabilities to improve your workflow and handle complex situations with confidence.
0/2
Fusion 360

GitHub is more than storage. This lesson covers how to use pull requests for code reviews, assign and manage issues, and contribute to open-source repositories. You’ll also learn how to fork repos, work with upstream changes, and use GitHub Discussions effectively.