我刚刚在StackOF页面中收到了这个答案,它起了作用,尽管我不完全理解它。
$links = wp_get_archives(array(\'echo\'=>\'0\',\'format\'=>\'<link>\'));
$regex = \'/\\b(https?|ftp|file):\\/\\/[-A-Z0-9+&@#\\/%?=~_|$!:,.;]*[A-Z0-9+&@#\\/%=~_|$]/i\';
preg_match_all($regex, $links, $matches);
$array_links = $matches[0];
print_r($array_links);
刚刚添加
\'post_type\' => \'myCPT\'
在
wp_get_archives()
数组,它起作用了。
找到真正的答案:https://stackoverflow.com/a/69365466/16825540