更改我的Jetpack Facebook共享链接的说明

时间:2012-02-04 作者:Trina

当我尝试使用Jetpack共享设置在facebook上共享WordPress网站的链接时,链接显示如下:

(My Featured image picture here)

Put a hat on yo’ baby! | Trendz with Trina

http://www.trendzwithtrina.com/2012/02/0...

You may use these HTML tags and attributes: < a href="" title=""> < abbr title=""> < acronym title=""> < b> < blockquote cite=""> < cite> < code> < del datetime=""> < em> <i> < q cite=""> < strike> < strong>
我该如何摆脱“你可以用废话废话”,并对我的网站或帖子进行描述?

1 个回复
SO网友:fuxia

此部分来自函数comment_form() 这就是你的主题,可能在comments.php:

\'comment_notes_after\'  => \'<p class="form-allowed-tags">\' 
    . sprintf( __( 
    \'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags 
    and attributes: %s\' ), \' <code>\' . allowed_tags() . \'</code>\' ) 
    . \'</p>\',
您可以使用一个简单的插件将其过滤掉:

<?php
/*
Plugin Name: Remove Markup Notice on Comment Form
*/
add_filter( \'comment_form_defaults\', \'wpse_41181_remove_markup_notice\', 10, 1 );

function wpse_41181_remove_markup_notice( $strings )
{
    $strings[\'comment_notes_after\'] = \'\';
    return $strings;
}
你是怎么得到更好的描述的……我不知道。我相信有一个常见问题解答。中没有设置吗/wp-admin/ 对于此模块?

结束

相关推荐

ADMIN中的自定义查询上的PAGINATE_LINKS-‘足够的权限’错误

我已使用此自定义查询在我的管理员中创建了一个页面:$rows = $wpdb->get_results(\"SELECT * FROM ej_feedback ORDER BY createdtime ASC\"); 我已经成功地按照要求分页,在第一页上显示适当数量的帖子,并显示适当数量的分页链接。令人惊叹的但是,当我单击其中一个分页链接转到第2页时,我收到一个管理错误:You do not have sufficient permissions to access this pageur