本文整理汇总了PHP中ICL_AdminNotifier::add_instant_message方法的典型用法代码示例。如果您正苦于以下问题:PHP ICL_AdminNotifier::add_instant_message方法的具体用法?PHP ICL_AdminNotifier::add_instant_message怎么用?PHP ICL_AdminNotifier::add_instant_message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ICL_AdminNotifier
的用法示例。
在下文中一共展示了ICL_AdminNotifier::add_instant_message方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wpml_register_string_packages_action
public function wpml_register_string_packages_action()
{
$links = get_bookmarks();
if ($links) {
foreach ($links as $link) {
$this->add_strings_package($link->link_id);
}
}
$link_categories = get_terms('link_category');
if ($link_categories) {
foreach ($link_categories as $link_category) {
$this->created_or_edited_link_category_action($link_category->term_id);
}
}
ICL_AdminNotifier::add_instant_message(__('Previous existing links are now available for translation', 'wpml-link-manager'), 'update');
}