开发者

How can I change the text representing the post-edit-link in WP?

开发者 https://www.devze.com 2023-04-05 00:19 出处:网络
I\'m working for a Swedish client, so I need all admin stuff to display in Swedish. I\'ve changed the define (\'WPLANG\', \'\'); and that\'s all working just 开发者_运维百科fine. However, under each p

I'm working for a Swedish client, so I need all admin stuff to display in Swedish. I've changed the define ('WPLANG', ''); and that's all working just 开发者_运维百科fine. However, under each page, the edit link still displays the English word "Edit". I'd like it to say "Redigera".

I can't seem to find the PHP that defines that. I'm running WP 3.1.4, because the client's server doesn't have PHP5.


try opening your wordpress template file, ie: single.php

then from there you will see the edit_post link ie:

edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' );

Just change the text to match...

if thats not something you want to do have a look here to add/edit your language file.

0

精彩评论

暂无评论...
验证码 换一张
取 消