Bu konunun varlık amacı, özel mesaj almaktan ve iki günde bir dolan mesaj kutusunu silmekten bıkmış olmamdır. Bundan sonra özel mesajla sorulan hiçbir soruya ücretsiz yanıt vermeyeceğim.
Eğer "benden" ücretsiz yardım istiyorsanız ve sorununuz gerçekten ücretsiz halledilebecek bir konuysa, bu konuya mesaj bırakınız.
Ayrıca Wordpress tema yapımı, tema düzenlemesi konularındaki sorularınızı da öncelikle bu konuda sorunuz. Ben size özel mesajla dönerim.
Merhaba;
Temamda functions.php'de
$meta_boxes = array(
"resim" => array(
"name" => "resim",
"title" => __("Resim Adresi:"),
"type" => "text",
"desc" => ""
)
);kodu var.Hazırldaığım botta
add_post_meta($post_id, 'resim', $resimlinki);
fonksiyonu ile içeriğine istediğim veriyi girebiliyorum...
Yine aynı temamda
$prefix = 'custom_meta_';
$meta_box = array(
'fields' => array(
array(
'name' => 'Upload your swf game file:',
'desc' => 'Upload your swf game file using upload/insert media button, or paste your embed code. <br />*<small>Note that if you are using embed code, you should use the HTML tab instead of Visual. Anyway, sometimes you must play around with the dimension of the game, to display the proportional width and heigh.</small>',
'id' => $prefix . 'gamefile',
'type' => 'wysiwyg',
'std' => '',
'options' => array(
'textarea_rows' => 15,
),
),
)
);fonksiyonu var. Buna bir türlü veri girişini yapamadım...
add_post_meta($post_id, 'BURAYA NE YAZACAĞIMI BİR TÜRLÜ BULAMADIM', $abc);
Yardımcı olursanız memnun olurum...