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 | |
function guru_yearsmarried() { | |
// dates to be calculated | |
$dateMarried = strtotime( '2004-04-22 15:00:00' ); | |
$currentDate = strtotime( current_time ( 'mysql' )); | |
// calculate the time in seconds and convert | |
$seconds = $currentDate - $dateMarried; | |
$years = $seconds / 60 / 60 / 24 / 365.242199; |
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 | |
function guru_is_blog () { | |
global $post; | |
$posttype = get_post_type($post ); | |
return ( ((is_archive()) || (is_author()) || (is_category()) || (is_home()) || (is_single()) || (is_tag())) && ( $posttype == 'post') ) ? true : false ; | |
} | |
if (guru_is_blog()) { echo 'You are on a blog page'; } |
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 | |
// create your shortcode function | |
function guru_my_shortcode() { | |
// do something here | |
// return text you want to display | |
return $output; | |
} |
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
<div class="iframe-container"> | |
<iframe class="latestVideoEmbed" vnum="0" cid="UCMhv8E4GMw6erC-9iiYtNFg" allowfullscreen="" width="800" height="480" frameborder="0"></iframe> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script> | |
var reqURL = "https://api.rss2json.com/v1/api.json?rss_url=" + encodeURIComponent("https://www.youtube.com/feeds/videos.xml?channel_id="); | |
function loadVideo(iframe) { | |
$.getJSON(reqURL + iframe.getAttribute('cid'), | |
function(data) { | |
var videoNumber = (iframe.getAttribute('vnum') ? Number(iframe.getAttribute('vnum')) : 0); | |
console.log(videoNumber); |
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
// add my own Login Logo | |
function guru_login_logo() { ?> | |
<style type="text/css"> | |
#login h1 a, .login h1 a { | |
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/your-logo.png); | |
height:65px; | |
width:320px; | |
background-size: 320px 65px; | |
background-repeat: no-repeat; | |
padding-bottom: 10px; |
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
// print the categry title without a link | |
foreach((get_the_category()) as $category){ | |
echo '<h1 class="page-title">' . $category->name . '</h1>'; | |
} | |
// print the category description | |
the_archive_description('<blockquote class="wp-block-quote">', '</blockquote>'); |
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
// make galleries link to Media File | |
// https://wordpress.stackexchange.com/questions/115368/overide-gallery-default-link-to-settings | |
function make_galleries_link_to_file() { | |
$post_type_object = get_post_type_object( 'post' ); | |
$post_type_object->template = array( | |
array( 'core/gallery', array( | |
'linkTo' => 'media', | |
) ), | |
); | |
} |
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
// add file uploads to Contributor role | |
function add_uploads_to_contribs () { | |
global $pagenow; | |
// grab contribtor role | |
$role = get_role ('contributor'); | |
// if this theme is activated, add the upload capability | |
if ('themes.php' == $pagenow && isset ($_GET['activated'])) { | |
$role -> add_cap ('upload_files'); |
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
Dependencies Resolved | |
================================================================================ | |
Package Arch Version Repository Size | |
================================================================================ | |
Installing: | |
php-mysql i686 5.4.45-56.el6.art atomic 461 k | |
Removing: | |
gd-last i686 2.2.5-5.el6.remi @remi-safe 372 k | |
libargon2 i686 20161029-7.el6.remi @remi-safe 58 k |
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
yum history | |
Loaded plugins: fastestmirror, refresh-packagekit | |
ID | Login user | Date and time | Action(s) | Altered | |
------------------------------------------------------------------------------- | |
86 | root <root> | 2019-07-12 11:13 | I, O, U | 11 EE | |
85 | root <root> | 2019-07-12 11:09 | Install | 1 | |
84 | root <root> | 2019-07-12 10:43 | E, I, U | 19 EE | |
83 | root <root> | 2019-05-06 08:59 | E, I, U | 27 EE | |
82 | root <root> | 2018-12-19 22:41 | Update | 2 |
NewerOlder