попробуй вот так
$json = '[{"05-10-2018":"Seeing dads differently"},{"05-10-2018":"Extraordinary ordinary Britain"},{"05-10-2018":" Roll up for the Social Science Market!"},{"05-10-2018":"Why do we use it?"},{"05-10-2018":"Extraordinary ordinary Britain"}]';
$json_decoded = json_decode($json, true);
$results = array();
array_walk($json_decoded, function($v) use (&$results){
$key = array_keys($v);
$value = array_values($v);
$results[] = "'{$key[0]}' : '<a href='http:www.google.com/' target='_blank'>{$value[0]}</a>'";
});
вывод $ результатов
Array
(
[0] => '05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Seeing dads differently</a>'
[1] => '05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Extraordinary ordinary Britain</a>'
[2] => '05-10-2018' : '<a href='http:www.google.com/' target='_blank'> Roll up for the Social Science Market!</a>'
[3] => '05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Why do we use it?</a>'
[4] => '05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Extraordinary ordinary Britain</a>'
)
вывод $ result_code
$result_code = '{'.implode(',', $results).'}';
{
'05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Seeing dads differently</a>',
'05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Extraordinary ordinary Britain</a>',
'05-10-2018' : '<a href='http:www.google.com/' target='_blank'> Roll up for the Social Science Market!</a>',
'05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Why do we use it?</a>',
'05-10-2018' : '<a href='http:www.google.com/' target='_blank'>Extraordinary ordinary Britain</a>'
}