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
<!-- Used to declare the document language, but not well supported. Better to use <html lang=""> --> | |
<meta name="language" content="en"> | |
<!-- Google disregards & Bing considers it an indicator of spam --> | |
<meta name="keywords" content="your,keywords,here,comma,separated,no,spaces"> | |
<!-- No evidence of current use in any search engines --> | |
<meta name="revised" content="Sunday, July 18th, 2010, 5:15 pm"> | |
<!-- Provides an easy way for spam bots to harvest email addresses --> |
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
<link rel="copyright" href="copyright.html"> | |
<link rel="stylesheet" href="https://example.com/styles.css"> | |
<link rel="alternate" href="https://feeds.feedburner.com/martini" type="application/rss+xml" title="RSS"> | |
<link rel="alternate" href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3"> | |
<link rel="alternate" href="https://es.example.com/" hreflang="es"> | |
<link rel="me" href="https://google.com/profiles/thenextweb" type="text/html"> | |
<link rel="me" href="mailto:[email protected]"> | |
<link rel="me" href="sms:+15035550125"> | |
<link rel="archives" href="https://example.com/2003/05/" title="May 2003"> | |
<link rel="index" href="https://example.com/" title="DeWitt Clinton"> |
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
<!-- For IE 10 and below --> | |
<!-- No link, just place a file called favicon.ico in the root directory --> | |
<!-- For IE 11, Chrome, Firefox, Safari, Opera --> | |
<link rel="icon" href="path/to/favicon-16.png" sizes="16x16" type="image/png"> | |
<link rel="icon" href="path/to/favicon-32.png" sizes="32x32" type="image/png"> | |
<link rel="icon" href="path/to/favicon-48.png" sizes="48x48" type="image/png"> | |
<link rel="icon" href="path/to/favicon-62.png" sizes="62x62" type="image/png"> | |
<link rel="icon" href="path/to/favicon-192.png" sizes="192x192" type="image/png"> | |
<!-- More info: https://bitsofco.de/all-about-favicons-and-touch-icons/ --> |
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
function shortURL() { | |
return 'https://fitodac.com/'; | |
} | |
add_shortcode('myurl', 'shortURL'); |
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
$currentTaxonomy = get_query_var('taxonomy'); | |
if ($currentTaxonomy) { | |
$taxObject = get_taxonomy($currentTaxonomy); | |
var_dump($taxObject); | |
} |
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
<link rel="stylesheet" href="owlcarousel/owl.carousel.min.css"> | |
<link rel="stylesheet" href="owlcarousel/owl.theme.default.min.css"> |
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
var $lat, | |
$lon, | |
$ini = 0, | |
$ini_data_error = false; | |
/*------------------------------------*/ | |
/* DATOS ACTUALES */ | |
/*------------------------------------*/ | |
var date = new Date(), |
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 wp_redirect( home_url() ); exit; ?> |
OlderNewer