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
@media (max-width:768px){ | |
.header-image .site-title > a{ | |
background-image:url(/wp-content/uploads/2016/06/logo-movil.png); | |
} | |
} |
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
@media (max-width:768px){ | |
.custom-logo-link{ | |
background-image:url(/wordpress/wp-content/uploads/2016/06/logo-movil.png); | |
margin:auto; | |
width:157px; | |
height:59px; | |
} | |
.custom-logo-link img{ | |
display:none; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
/* | |
Hacemos referencia al archivo wp-blog-header.php para | |
que nuestro archivo incluya la funcionalidad de Wordpress | |
*/ | |
define('WP_USE_THEMES', false); | |
require('../wp-blog-header.php'); | |
?> |
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 | |
// Página de error de Base de Datos personalizada | |
// Referencia @ digwp.com | |
header('HTTP/1.1 503 Service Temporarily Unavailable'); | |
header('Status: 503 Service Temporarily Unavailable'); | |
header('Retry-After: 3600'); | |
mail("admin@dominio.com", "Error Base de datos", "Hay un error en la BD, verifica!"); | |
?> | |
<!DOCTYPE HTML> | |
<html dir="ltr" lang="es-ES"> |
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 | |
if (array_key_exists("step",$_REQUEST) && $_REQUEST["step"] == 2){ | |
add_action("shutdown", "dcms_install_data"); | |
} | |
function dcms_install_data() { | |
global $wpdb, $wp_rewrite; | |
if (!get_option("blogname", false)) { | |
return; | |
} |
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
<table> | |
<thead> | |
<tr> | |
<th>Nombre</th> | |
<th>Ene</th> | |
<th>Feb</th> | |
<th>Mar</th> | |
<th>Abr</th> | |
<th>May</th> | |
<th>Jun</th> |
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 | |
$host = 'http://tudominio.com/wp-json/wp/v2/posts/'; | |
$data = array('title' => 'Titulo Post Nuevo', 'content' => 'Contenido nueva entrada', 'status' => 'publish'); | |
$data_string = json_encode($data); | |
$headers = array( | |
'Content-Type:application/json', | |
'Content-Length: ' . strlen($data_string), |
OlderNewer