Merhaba Arkadaşlar,
Wordpress sitesi kurduğunuz zaman, genellikle sağ tarafta bulunan Meta başlıklı bölümde bulunan,

Wordpress.org yazısını silmek ya da diğer linkleri silmek, düzenlemek istediğimiz zaman yapmamız gereken şey;
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<?php echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="#" title="%s">%s</a></li>',
esc_url( __( 'http://wordpress.org/' ) ),
esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
_x( 'WordPress.org', 'meta widget link text' )
) ); ?>
<?php wp_meta(); ?>
</ul>
kısmını bulunuz.
<!-- ve 10. satırın sonuna da --> kısmını ekleyiniz. Böylelikle arada kalan kısım, html yorum satırı olarak algılanacak ve işlem görmeyecektir.<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<!--<?php echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="#" title="%s">%s</a></li>',
esc_url( __( 'http://wordpress.org/' ) ),
esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
_x( 'WordPress.org', 'meta widget link text' )
) ); ?>-->
<?php wp_meta(); ?>
</ul>
Not : Bahsedilen yöntem Wordpress 3.8 ile denenmiş ve sorunsuz çalışmıştır.