This file contains hidden or 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 | |
/** | |
* Title: Latest Posts | |
* Slug: my-theme/latest-posts | |
* Block types: core/post-content | |
* Categories: featured, text | |
*/ | |
?> | |
<!-- wp:query {"queryId":0,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"displayLayout":{"type":"flex","columns":3},"layout":{"contentSize":"800px"}} --> | |
<div class="wp-block-query"><!-- wp:post-template --> |
This file contains hidden or 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
{ | |
"version": 2, | |
// e.g. https://wordpress.org/patterns/pattern/meet-the-team-2/ | |
"patterns": [ "meet-the-team-2" ] | |
} |
This file contains hidden or 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 | |
/** | |
* Title: Hero | |
* Slug: my-theme/hero | |
* Block types: core/post-content | |
* Categories: headers, text | |
*/ | |
?> | |
<!-- wp:cover {"url":"http://fsefidelitas.local/wp-content/uploads/2022/06/marta-rastovac-t0m-hgapGk-unsplash-scaled.jpeg","id":21,"dimRatio":50,"minHeight":600,"style":{"spacing":{"padding":{"top":"100px","right":"200px","bottom":"100px","left":"200px"}}}} --> | |
<div class="wp-block-cover" style="padding-top:100px;padding-right:200px;padding-bottom:100px;padding-left:200px;min-height:600px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img class="wp-block-cover__image-background wp-image-21" alt="" src="http://fsefidelitas.local/wp-content/uploads/2022/06/marta-rastovac-t0m-hgapGk-unsplash-scaled.jpeg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"layout":{"contentSize":"600px"}} --> |
This file contains hidden or 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
"styles":{ | |
"blocks": { | |
"core/button": { | |
"spacing": { | |
"padding": { | |
"top": "16px", | |
"right": "32px", | |
"bottom": "16px", | |
"left": "32px" | |
} |
This file contains hidden or 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
"styles": { | |
"spacing":{ | |
"blockGap": "32px", | |
}, | |
"typography": { | |
"fontSize": "var(--wp--preset--font-size--size18)", | |
"fontFamily": "var(--wp--preset--font-family--helvetica-arial)", | |
"lineHeight": "1.5" | |
}, | |
"elements": { |
This file contains hidden or 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
"typography": { | |
"fontFamilies": [ | |
{ | |
"name": "Helvetica or Arial", | |
"slug": "helvetica-arial", | |
"fontFamily": "Helvetica Neue, Helvetica, Arial, sans-serif" | |
} | |
], | |
"fontSizes":[ | |
{ |
This file contains hidden or 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
{ | |
"$schema": "https://schemas.wp.org/trunk/theme.json", | |
"version": 2, | |
"settings": { | |
"appearanceTools": true, | |
"color": { | |
"palette": [ | |
{ | |
"slug": "primary", | |
"color": "#D63E4B", |
This file contains hidden or 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
βββ my-theme | |
βββ parts | |
βββ header.html | |
βββ footer.html | |
βββ templates | |
βββ index.html | |
βββ single.html | |
βββ functions.php | |
βββ index.php | |
βββ theme.json |
This file contains hidden or 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
function kia_translate_billing_details_when_free( $translated_text, $untranslated_text, $domain ) { | |
if ( function_exists( 'wc' ) && 'woocommerce' === $domain ) { | |
//make the changes to the text | |
switch( $untranslated_text ) { | |
case 'Billing details': | |
if ( ! WC()->cart->needs_shipping() && 0.0 === floatval( WC()->cart->get_total( 'edit' ) ) ) { | |
$translated_text = __( 'NOT billing details', 'kia_textdomain' ); |
This file contains hidden or 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
$sb_args = [ | |
'numberposts' => -1, | |
'posts_per_page' => 5, | |
'tax_query' => [ | |
[ | |
'taxonomy' => 'YOUR_CUSTOM_TAXONOMY', | |
'terms' => 'YOUR_CUSTOM_TERMS', | |
], | |
], | |
'orderby' => 'date', |