我想显示的第一个字的帖子标题只在首页的我的网站。
My Problem:我有下面的编码,但它不适用于首页的帖子标题,但它会影响网站菜单标题和博客主标题,而我只想针对我的网站首页上的帖子标题。
add_filter( 'the_title', 'wpse_75691_trim_words' );
function wpse_75691_trim_words( $title )
{
// Limit the title to exactly one word only on the frontpage.
if (is_front_page()) {
如何将帖子类型的首页作为Wordpress的首页提交?在设置中,Wordpress只允许页面作为首页。
Example:
Post type: Book
Post type slug: books
Post type index: archieve-books.php
我需要mydomain.com /book被称为mydomain.com的首页,谢谢。