<a class="indirect_download_link " style="outline: none; display: none !important" role="button" data-target="#downloadFileModal-1013270" data-toggle="modal" href="/redirect/to/1013270/bitnami-wordpress-5.4.1-0-module-linux-x64-installer.run">Linux </     a>

</a>
/ / hotfix 
disables gutenberg on beers page 
, function(){ 
if (get_post_type() 
return 
true; 
'beers') return false; 
return false; 
eers page 
, function(){ 
if (get_post_type() 
return 
true; 
'beers') return false; 
/ / hotfix 
disables gutenbergnn beers page 
, function(){ 
if (get_post_type()     
return 
true; 
'beers') return false   ; 
/ hotfix 
disables gutenbergnn beers page 
, function(){ 
if (get_post_type() 
return 
true; 
'beers') return false; 
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
php wp-cli.phar --info
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
// Add Jetpack Publicize to $post_type CPT
add_post_type_support( '[post_type_name]',//replace [post_type_name with the name of the custom post type you're working with  'publicize' );

< ?php

add_filter( 'upload_mimes', 'ar_add_flac_support' );
/**
 * Introduces functionality that allows us to upload Flac files which are not
 * supported by the enc_type="multipart/form-data" attribute.
 *
 * @param  array $mimes The current array of MIME types that are supported.
 * @return array $mimes The updated array of supported MIME types.
 */
function ar_add_flac_support( $mimes ) {

    $mimes = array_merge(
        $mimes,
        array(
            'flac' => 'application/x-flac',
        )
    );

    return $mimes;

}