Tagged: Latest News
-
AuthorPosts
-
November 11, 2015 at 11:59 pm #534461
Hi, Enfold
I see some relevant posts here, but all those posts are removal or replace it with title of posts.
i want to edit these texts “blog-latest news” and want to add my own keywords there. where i can edit these texts. please give me the exact php location file to edit it.
November 12, 2015 at 4:54 pm #534890Hi Hafeez Ullah!
Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
you can change
$args['title'] = get_the_title($id);
to
$args['title'] = "your text here";
Best regards,
Yigit- This reply was modified 9 years ago by Yigit.
November 12, 2015 at 6:52 pm #535010HI, Yigit,
I already seen that post, ( http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/ )
after adding that coding my post title show its title at that place where i want the keyword “Blogger Templates” Means that coding showing the post original title at that place.please attention what i need to say.
check this site: http://www.gooyaabitemplates.com and see the keywords “Blogger Templates” at breadcrumbs navigation place. It is showing on homepage too and on post pages too the keyword “Blogger Templates”
see the screenshot.
1: http://prntscr.com/91zdgd ( i set this on my site homepage )
2: http://prntscr.com/91zfb2 ( how to set this on my site dont know )
my site: http://themezy.tk/
November 14, 2015 at 3:08 pm #535870Hi!
I checked the site and the title is now “Blogger Templates”. Did you figure this out? I’m sorry but your explanation above is a bit unclear so a little more info will help.
Cheers!
IsmaelNovember 14, 2015 at 7:55 pm #535940Hi, Ismael
My site is here: http://themezy.tk/
it show the “Blogger Templates” on homepage but not on post pages.
visit my site and open any one post, then you will see the same post title not the keyword “Blogger Templates”
screenshot: http://prntscr.com/92q0pf
i want to display “Blogger Templates” on post pages too.
November 17, 2015 at 2:49 am #537036Hi!
Thank you for the info. Is “Blogger Templates” a category? Or do you want every single post pages to have that keyword? Try this in the functions.php file:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); function avf_title_args_mod($args,$id) { if ( is_single() ) { $args['title'] = 'Blogger Templates'; } return $args; }
Cheers!
IsmaelNovember 17, 2015 at 8:54 am #537164Hi, Ismael
Good to ask about that, whether it is a category or keyword.
The “Blogger Templates” is a title of my frontpage. ( see it: http://prntscr.com/93o16z )
i want to show it also on post pages…when someone browse any post the title in breadcrumbs navigation should be look like “Blogger Templates” like it appear on frontpage..
Like this: http://prntscr.com/93o1ll
I want same it to show on post pages also. http://prntscr.com/93o25i
November 21, 2015 at 2:12 am #540031Hey!
If that is a static text then you should use the code we provided above. https://kriesi.at/support/topic/how-to-edit-blog-latest-news-to-put-my-own-keywords/#post-537036
Best regards,
IsmaelNovember 21, 2015 at 10:02 am #540130I resolved that problem by editing the single.php file..there i replace the “blog-latest news” with my keyword.
November 23, 2015 at 7:41 am #540529 -
AuthorPosts
- You must be logged in to reply to this topic.