0
所以,這裏是一個沒有任何參數(WordPress的)原始功能添加PHP參數
public static function getCurrent() {
$post = get_post();
$profiles = new MY_images($post->ID);
return $profiles;
}
這是在下面的變量中:
$my_site_images = MY_images::getCurrent();
因此,它得到了$post->ID
從getCurrent()
現在,我想定製它,以便我可以在其中添加任何id
或將其保留爲空,以用於默認功能,例如followin g:
$my_site_images = MY_images::getCurrent(343); (where the "post id" is 343)
我需要對原始函數做些什麼修改才能添加任何ID?
謝謝一堆!
謝謝。欣賞它!得到它的工作。 –