-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Project at Sun Apr 23 23:24:57 +07 2023
- Loading branch information
1 parent
e888203
commit 0f39664
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,16 @@ | |
* @param $description | ||
* @param $image | ||
* | ||
* @return mixed | ||
* @author : 713uk13m <[email protected]> | ||
* @copyright: 713uk13m <[email protected]> | ||
* @time : 23/04/2023 22:17 | ||
* @time : 23/04/2023 23:49 | ||
*/ | ||
function bear_simple_seo_header($title = '', $description = '', $image = '') | ||
{ | ||
$CI =& get_instance(); | ||
$cms = $CI->load->library('seo_onpage'); | ||
|
||
return $cms->seo_onpage->published($title, $description, $image); | ||
/** @var \CI_Seo_onpage $seo */ | ||
$seo = $cms->seo_onpage; | ||
$seo->published($title, $description, $image); | ||
} | ||
} |