open the cmd as administrator and type the following
mklink /D "C:\full route to the symlink" "C:route to the original file that you want to symlink"
//the third variable is an array where you can pass any variables or complete objects | |
<?php get_template_part('template-parts/featured-image',null,[ | |
'subHead' => get_field('title_sub-head') | |
]); ?> | |
//in the part, you use the key $args to pass the parameters. | |
<?php if ( has_post_thumbnail( $post->ID ) ) : ?> | |
<section class="hero" style="background-image: url(<?php the_post_thumbnail_url(); ?>);"> | |
<?php echo $args['subHead']; // here you pass the arguments with the variable $args?> | |
</section> |
<?php | |
//next prev buttons | |
$pagelist = get_posts('sort_order=asc');//use get_pages for pages | |
$pages = array(); | |
foreach ($pagelist as $page) { | |
$pages[] += $page->ID; | |
} | |
$current = array_search(get_the_ID(), $pages); | |
$prevID = $pages[$current-1]; | |
$nextID = $pages[$current+1]; |
sudo apt install ruby | |
sudo apt install rbenv | |
sudo apt install ruby-railties | |
sudo apt install ruby-dev | |
sudo gem install rails -v 6.0.0 | |
rbenv rehash | |
rails -v |
add_action( 'init', function() { | |
remove_post_type_support( 'page', 'editor' ); | |
}, 10); |
open the cmd as administrator and type the following
mklink /D "C:\full route to the symlink" "C:route to the original file that you want to symlink"
in terminal: | |
sudo apt-get install unrar | |
or | |
sudo apt-get install unar | |
Then for using with archive manager: sudo apt-get install file-roller |
<div class="cell medium-4"> | |
<div class="media__teaser"> | |
<p class="media__teaser--type"> | |
<?php echo get_the_category()[0]->name; ?> | |
</p> | |
<div class="media__teaser--title"> | |
<?php echo mb_strimwidth(get_the_title(), 0, 50, '...'); ?> |
ssh-keygen -t rsa -C "your email"
Log into the remote machine as root: ssh root@123.45.67.890
First, add the admin user.
If you want to experiment with a MacOS system and use GNU/Linux on your machines, then it’s actually quite simple to setup a virtual instance of MacOS on VirtualBox. Instead of looking for a Hackintosh image, I tried using a Vagrant image and was able to boot into MacOS within minutes.
Prerequisites
Install VirtualBox from VirtualBox’s download page Install additional dependencies: sudo apt-get install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms
Setup Vagrant by downloading the appropriate Vagrant DEB package from Vagrant’s download page
Meat
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).