wp admin - How to display site title with post title?

admin2025-06-03  3

Is it possible to have the site title prepended before each post title, separated by a hyphen? For example:

[my site title] - [my post title]

Is it possible to have the site title prepended before each post title, separated by a hyphen? For example:

[my site title] - [my post title]
Share Improve this question edited Feb 9, 2019 at 0:02 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Dec 1, 2012 at 17:27 4thSpace4thSpace 2671 gold badge3 silver badges9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 4
function prepend_site_name($title) {
  return get_bloginfo('name').' - '.$title;
}
add_filter('the_title','prepend_site_name');

Like that?

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748927462a314889.html

最新回复(0)