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"
<?php | |
//For use with a single field. | |
$video = get_field('video'); //Embed Code | |
$video_url = get_field('video', FALSE, FALSE); //URL | |
$video_thumb_url = get_video_thumbnail_uri($video_url); //get THumbnail via our functions in functions.php ?> | |
<?php //Lightbox Link via Thumbnail ?> | |
<a href="#lightbox"><img src="<?php echo $video_thumb_url; ?>"/></a> |
Install dependencies: | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get -y install libaio1 libncurses5 libnss3-tools rsync shared-mime-info desktop-file-utils libxshmfence1 libglu1 libatk1.0-0 libatk-bridge2.0-0 libgtk2.0-0 libgtk-3-0 libgbm-dev libasound2 libnuma-dev libxslt1.1 lxqt-sudo libzip4 | |
sudo apt --fix-broken install | |
sudo apt install wget | |
sudo apt install curl |
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 |
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"
Usage | |
You need git to be installed for the commands below to work. Use | |
sudo apt install git | |
to do so. | |
Run the script and commands | |
git clone https://github.com/DamionGans/ubuntu-wsl2-systemd-script.git | |
cd ubuntu-wsl2-systemd-script/ | |
bash ubuntu-wsl2-systemd-script.sh |
//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 |
class DospuntoceroCMS extends LeftAndMainExtension{ | |
function alternateAccessCheck(){ | |
// html display simplification | |
$lines = array('pastetext','ssmedia','separator','bold','italic','underline','strikethrough','hr','separator','styleselect','formatselect','separator','bullist','numlist','blockquote','sslink','unlink','anchor','separator','code'); | |
$config = HtmlEditorConfig::get('cms'); | |
$config->setButtonsForLine(1, $lines); | |
$config->setButtonsForLine(2, 'tablecontrols'); | |
$config->setButtonsForLine(3, null); |
add_action( 'init', function() { | |
remove_post_type_support( 'page', 'editor' ); | |
}, 10); |