Trying to add some custom text into Wordpress Post title via function.php
I need to add a custom text in wordpress Post title dynamically which I'm trying to add via this code in function.php
Following code is not working
add_filter('the_title', 'new_title', 10, 2);
function new_title($title, $id) {
if('babysitters' == get_post_type($id)){
$exclusive = get_field('exclusive', $id); // pass the id into get_field
$title = $title .', ' .$exclusive->y;
}
return $title;
}

