本文整理匯總了PHP中WPSEO_Options::save_option方法的典型用法代碼示例。如果您正苦於以下問題:PHP WPSEO_Options::save_option方法的具體用法?PHP WPSEO_Options::save_option怎麽用?PHP WPSEO_Options::save_option使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WPSEO_Options
的用法示例。
在下文中一共展示了WPSEO_Options::save_option方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: set_data
/**
* Set the data in the options.
*
* @param {string} $data The data to set for the field.
*
* @return bool Returns true or false for successful storing the data.
*/
public function set_data($data)
{
$value = $data === 'yes';
// Set multiple authors option.
$result_multiple_authors = WPSEO_Options::save_option('wpseo', 'has_multiple_authors', $value);
/*
* Set disable author archives option. When multiple authors is set to true,
* the disable author option has to be false. Because of this the $value is inversed.
*/
$result_author_archives = WPSEO_Options::save_option('wpseo_titles', 'disable-author', !$value);
return $result_multiple_authors === true && $result_author_archives === true;
}