<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Miguel Ruiz</title>
    <description>The latest articles on DEV Community by Miguel Ruiz (@miguelhipotecanow).</description>
    <link>https://dev.to/miguelhipotecanow</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3062307%2Fcd67810b-c456-4900-a068-06b8a48e88a6.png</url>
      <title>DEV Community: Miguel Ruiz</title>
      <link>https://dev.to/miguelhipotecanow</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/miguelhipotecanow"/>
    <language>en</language>
    <item>
      <title>Cómo Crear un Plugin de WordPress Simple en Menos de 5 Minutos</title>
      <dc:creator>Miguel Ruiz</dc:creator>
      <pubDate>Fri, 18 Apr 2025 10:01:53 +0000</pubDate>
      <link>https://dev.to/miguelhipotecanow/como-crear-un-plugin-de-wordpress-simple-en-menos-de-5-minutos-35dl</link>
      <guid>https://dev.to/miguelhipotecanow/como-crear-un-plugin-de-wordpress-simple-en-menos-de-5-minutos-35dl</guid>
      <description>&lt;p&gt;Crear un plugin en WordPress no tiene por qué ser complicado. En este breve post te explico cómo hicimos uno sencillo para añadir un mensaje al footer de una web.&lt;/p&gt;

&lt;p&gt;Este fue nuestro caso real con &lt;a href="https://hipotecanow.es" rel="noopener noreferrer"&gt;HipotecaNow&lt;/a&gt;, una plataforma donde ayudamos a los usuarios a comparar hipotecas y tomar mejores decisiones financieras.&lt;/p&gt;

&lt;h3&gt;
  
  
  Estructura básica del plugin
&lt;/h3&gt;

&lt;p&gt;Creamos un archivo &lt;code&gt;footer-message.php&lt;/code&gt; con el siguiente contenido:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
php
&amp;lt;?php
/**
 * Plugin Name: Footer Message
 * Description: Muestra un mensaje personalizado en el pie de página.
 * Version: 1.0
 * Author: Miguel Ruiz
 */

function mensaje_footer() {
    echo '&amp;lt;p style="text-align: center;"&amp;gt;Gracias por visitar nuestra web 🏡&amp;lt;/p&amp;gt;';
}
add_action('wp_footer', 'mensaje_footer');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>wordpress</category>
      <category>tutorial</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
