Arşiv / Genel

string ve array nedir?

string= dizearray= dizi A string is just a bunch of letters, numbers, or symbols all stuck together in one line. Think of it like a sentence written inside quotes “like this”. An array is like a list that holds lots of things, and each thing is separate. [“apple”, “banana”, “cherry”]

Okumaya devam →

display woocommerce category image

Okumaya devam →

using link in metabox description sprintf( )

sprintf()

Okumaya devam →

metabox wp editor (yazı düzenleyici) seçenekleri

Okumaya devam →

get value of a metabox

only works in loop

Okumaya devam →

Bir woocommerce ürün kategorisinin ID’sini göstermek

$category = get_term_by( ‘slug’, ‘kategori’, ‘product_cat’ ); $id = $category->term_id; echo $id;

Okumaya devam →

özel yazı tipine ait tekil sayfanın linkine URL vermek

Okumaya devam →

select last child element

ul içindeki son li eleman hariç diğerlerine etki eder

Okumaya devam →

center before and after pseudo element

Okumaya devam →

Koşula göre sayfa çağırmak

Çoğu tema geliştiricileri woocommerce sayfasında bir sidebar tercih ediyor, ama ben şahsen buna karşıyım. Aşağıdaki kod woocommerce sayfasında sidebar göstermez ama diğer sayfalarda gösterir. <?php if (is_shop()) { ?> <?php get_template_part(‘woocommerce’); ?> <?php } else { ?> <?php get_header(); ?> <div class=”sample__class”> <p>some content goes here </div> <?php } ?>

Okumaya devam →