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>fbq('track', 'Lead');</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 | |
ini_set( 'memory_limit', '1024M' ); | |
ini_set( 'max_execution_time', 600 ); | |
define( 'WP_USE_THEMES', false ); | |
require_once 'wp-load.php'; | |
echo 'iniciado proceso.' . date( 'H:i:s', time() ) . '<br />'; | |
$weight_final = '1000'; |
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>fbq('track', 'PageView');</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
ssh-keyscan -t rsa itm20.siteground.biz >> ~/.ssh/known_hosts | |
cd ~/.ssh/ | |
nano [your-private-key] | |
chmod 600 [your-private-key] | |
ssh-add -K ~/.ssh/[your-private-key] | |
# Poner la frase privada que da SG-Git | |
git clone ssh://[url] |
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
#Wordpress | |
htaccess.txt | |
index.php | |
licencia.txt | |
license.txt | |
readme.html | |
robots.txt | |
wp-activate.php | |
wp-blog-header.php | |
wp-comments-post.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
.ftpquota | |
.gitignore |
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
[git-ftp] | |
url = ftp://ftp.url.com:21/www/ | |
user = username | |
password = "pass" |
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
/* | |
Site Header | |
---------------------------------------------------------------------------------------------------- */ | |
/* This is where the magic happens. You need | |
* to assign a fixed position in order for | |
* everything else to work correctly. | |
--------------------------------------------- */ | |
.site-header { | |
position: fixed; | |
top: 0; |
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
// Remove WooCommerce Updater | |
remove_action('admin_notices', 'woothemes_updater_notice'); |
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
//* Adds featured image in home | |
add_image_size( 'destacada_pagina', 1440, 470, true ); | |
add_action('genesis_after_header','cmk_home_img'); | |
function cmk_home_img() { | |
if ( has_post_thumbnail() && !is_singular() && !is_home() && !is_front_page()) { | |
echo '<div class="miniatura text-center">'; | |
the_post_thumbnail('destacada_pagina'); | |
echo '</div>'; | |
} elseif (is_home() || is_front_page()) { | |
echo '<section id="slider">'; |