本文整理汇总了PHP中wpcf_post_relationship_set_translated_children函数的典型用法代码示例。如果您正苦于以下问题:PHP wpcf_post_relationship_set_translated_children函数的具体用法?PHP wpcf_post_relationship_set_translated_children怎么用?PHP wpcf_post_relationship_set_translated_children使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpcf_post_relationship_set_translated_children函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wpcf_fix_translated_post_relationships
function wpcf_fix_translated_post_relationships($post_id)
{
require_once WPCF_EMBEDDED_ABSPATH . '/includes/post-relationship.php';
wpcf_post_relationship_set_translated_parent($post_id);
wpcf_post_relationship_set_translated_children($post_id);
}
示例2: wpcf_wpml_duplicated_post_relationships
function wpcf_wpml_duplicated_post_relationships($original_post_id, $lang, $postarr, $duplicate_post_id)
{
require_once WPCF_EMBEDDED_ABSPATH . '/includes/post-relationship.php';
wpcf_post_relationship_set_translated_parent($duplicate_post_id);
wpcf_post_relationship_set_translated_children($duplicate_post_id);
}