
Örnek PHP KODU : Bu deneme.php yi wordpress plugin içine gömün yeterli..
<?php
/*
Plugin Name: noertz
Plugin URI: http://www.google.com
Description: noertz
Version: Versiyon 1
Author: Noertz
Author URI: http://www.google.com
License: GNU
*/
function people_init() {
// create a new taxonomy
register_taxonomy(
'people',
'post',
array(
'label' => __( 'People' ),
'rewrite' => array( 'slug' => 'person' ),
'capabilities' => array(
'assign_terms' => 'edit_guides',
'edit_terms' => 'publish_guides'
)
)
);
}
add_action( 'init', 'people_init' );
?>merhaba arkadaşlar,
wordpress sistemiyle ilgili ilk defa eklenti yazıyorum. Kodlamam bitti ancak bu eklentiyi yazı yazma kısmının sağında bir türlü aktif edemedim.
Eklentimi görüntüde yuvarlak içine aldığım yere eklemek istiyorum.