This file contains 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
<?php | |
// Ejemplo básico de PHP - https://www.dinapyme.com - http://www.oscarabadfolgueira.com | |
// Mostrar texto con html por pantalla | |
// En este ejemplo mostramos un texto dentro de una etiqute h1 por pantalla (html). | |
// También muestra algo más de texto con otras etiquetas html. | |
echo "<h1>Texto con etiqueta H1</h1>"; | |
echo "<br />"; | |
echo "<p>Este texto es un párrafo porque está incluído dentro de la etiqueta 'p' de html.</p>"; | |
echo "<p>Este texto es otro párrafo.</p>"; |
This file contains 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
<?php | |
// Ejemplo básico de PHP - https://www.dinapyme.com - http://www.oscarabadfolgueira.com | |
// Mostrar texto con html por pantalla | |
// En este ejemplo mostramos un texto dentro de una etiqute h1 por pantalla (html). | |
echo "<h1>Texto con etiqueta H1</h1>"; | |
?> |
This file contains 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
<?php | |
// Ejemplo básico de PHP - https://www.dinapyme.com - http://www.oscarabadfolgueira.com | |
// Mostrar texto con PHP | |
// En este ejemplo mostramos un texto por pantalla utlizando sólo php, sin html. Utilizamos ECHO. | |
echo "Este texto se muestra...."; | |
?> |
This file contains 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
<?php | |
//* No incluyas la etiqueta de inicio de php anterior | |
//* Puedes incluir este código en el fichero functions.php del tema hijo de Genesis Framework | |
//* Más información en: https://www.oscarabadfolgueira/anadir-texto-al-titulo-de-los-entradas-en-wordpress-dependiendo-de-la-categoria | |
//* | |
//* Descripción: Añadir un texto específico al título de las entradas WordPress en función de la categoría asignada | |
//* Puedes añadir este código en el fichero functions.php de tu tema | |
add_filter( 'the_title', 'modificar_titulo_por_categoria', 10, 2 ); |
This file contains 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
<?php | |
// Ejemplo de conexión a base de datos MySQL con PHP. | |
// | |
// Ejemplo realizado por Oscar Abad Folgueira: http://www.oscarabadfolgueira.com y https://www.dinapyme.com | |
// Datos de la base de datos | |
$usuario = "root"; | |
$password = ""; | |
$servidor = "localhost"; | |
$basededatos = "alumnos"; |
This file contains 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
<?php | |
//* No incluyas la etiqueta de inicio de php anterior | |
//* Puedes incluir este código en el fichero functions.php del tema hijo | |
//* Más información en: https://www.dinapyme.com/snippets/wordpress-snippet-quitar-el-texto-enfold-wordpress-theme-by-kriesi-del-footer-del-tema-enfold/ | |
//* Disponible en formato Plugin | |
//* Quitar la segunda parte del texto del copyright del footer del tema Enfold | |
add_filter('kriesi_backlink','__return_false'); |
This file contains 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
<?php | |
//* No incluyas la etiqueta de inicio de php anterior | |
//* Puedes incluir este código en el fichero functions.php del tema hijo | |
//* Más información en: https://www.dinapyme.com/snippets/genesis-framework-snippet-eliminar-la-descripcion-de-la-pagina-web/ | |
//* Disponible en formato Plugin en: https://www.dinapyme.com/plugins/genesis-framework-eliminar-la-descripcion-de-la-pagina-web/ | |
//* Eliminar la descripción del sitio web | |
remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); |
This file contains 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
<?php | |
//* No incluyas la etiqueta de inicio de php anterior | |
//* Puedes incluir este código en el fichero functions.php del tema hijo de Genesis Framework | |
//* Más información en: https://www.dinapyme.com/snippets/snippet-genesis-framework-eliminar-el-titulo-de-la-web/ | |
//* Disponible en formato Plugin en: https://www.dinapyme.com/producto/plugin-genesis-framework-eliminar-titulo-la-web/ | |
//* Eliminar el título del sitio web | |
remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); |
This file contains 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
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
jQuery("#footer-info").text(' '); | |
jQuery("<p style='color:white;'>Copyright © 2016 DINAPYME S.L. All rights reserved.</p>").insertAfter("#footer-info"); | |
}); | |
</script> |
This file contains 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
<?php | |
/** | |
* Plugin Name: Mi primer plugin | |
* Plugin URI: http://www.dinapyme.com/podcast/42-introduccion-al-desarrollo-de-plugins-para-wordpress/ | |
* Description: Plugin de ejemplo para saber como crear un plugin | |
* Version: 0.1 | |
* Author: Oscar Abad Folgueira | |
* Author URI: https://www.dinapyme.com | |
* Text Domain: dinapyme-ejemplo | |
* Domain Path: /languages/ |