Headings from h1
through h6
are constructed with a #
for each level:
# h1 Heading
## h2 Heading
### h3 Heading
# dd if=/dev/zero of=/swapfile bs=1024 count=1024000 | |
# mkswap /swapfile | |
# swapon /swapfile |
<a href="{{ shop.url }}"> | |
<img | |
src="{{ 'logo.png' | asset_url }}" | |
alt="{{ shop.name }}" | |
data-retina-src="{{ 'logo.svg' | asset_url }}"> | |
</a> | |
<script type="text/javascript"> | |
Modernizr.addTest('retina', function () { | |
return (!!navigator.userAgent.match(/Macintosh|Mac|iPhone|iPad/i) && window.devicePixelRatio==2); | |
}); |
ls *.ts | awk 'BEGIN {print "ffconcat version 1.0"}{print "file " $1}' > segments.ffconcat | |
ffmpeg -i segments.ffconcat -bsf:a aac_adtstoasc -acodec copy -vcodec copy final.mp4 |
I hereby claim:
To claim this, I am signing this object:
<?php | |
add_action( 'wp', 'my_private_page_404' ); | |
function my_private_page_404() { | |
$queried_object = get_queried_object(); | |
if ( isset( $queried_object->post_status ) && 'private' == $queried_object->post_status && !is_user_logged_in() ) { | |
wp_safe_redirect( add_query_arg( 'private', '1', wp_login_url( $_SERVER['REQUEST_URI'] ) ) ); | |
exit; | |
} |
<?php | |
/** | |
* Hook: woocommerce_before_main_content. | |
* | |
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) | |
* @hooked woocommerce_breadcrumb - 20 | |
* @hooked WC_Structured_Data::generate_website_data() - 30 | |
*/ |
Note: The site owner has disabled Google Analytics tracking for your user role. app-5cda2213f911c80f508142c7.closte.com:70:11 | |
ReferenceError: tinymce is not defined | |
app-5cda2213f911c80f508142c7.closte.com:55049:1 | |
<anonymous> https://app-5cda2213f911c80f508142c7.closte.com/?ct_template=fundraising&ct_builder=true&ct_inner=true:55049 | |
Error: $ is not a function | |
@https://app-5cda2213f911c80f508142c7.closte.com/wp-content/plugins/oxygen/component-framework/angular/controllers/ui.min.js:1:1162 | |
X@https://app-5cda2213f911c80f508142c7.closte.com/wp-includes/js/jquery/jquery.js:3:4562 | |
prop@https://app-5cda2213f911c80f508142c7.closte.com/wp-includes/js/jquery/jquery.js:4:13165 | |
@https://app-5cda2213f911c80f508142c7.closte.com/wp-content/plugins/oxygen/component-framework/angular/controllers/ui.min.js:1:1133 | |
invoke@https://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.js:4138:17 |
<?php | |
/** | |
* Display how many spots are left in the choice label when using the GP Limit Choices perk | |
* https://gravitywiz.com/gravity-perks/ | |
*/ | |
add_filter( 'gplc_remove_choices', '__return_false' ); | |
add_filter( 'gplc_pre_render_choice', 'ayc_add_how_many_left_message', 10, 5 ); | |
function ayc_add_how_many_left_message( $choice, $exceeded_limit, $field, $form, $count ) { | |
$limit = rgar( $choice, 'limit' ); | |
$how_many_left = max( $limit - $count, 0 ); |