nl1dmo
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Postie] Post from mobile to catgoryPlease .. who can help me to make this change?
Forum: Plugins
In reply to: [Plugin: Postie] Post from mobile to catgoryNobody ??
Forum: Plugins
In reply to: Place post id in page titleThanks!
It worked. I’m learning php day by day 🙂
Thnx to all.Forum: Plugins
In reply to: Place post id in page title‘Sorry mrmist i don’t know a lot about programming. I think i’m almost there:
<title><?php bloginfo(‘name’); if ( is_single()) { echo ‘ ‘;echo $post->ID; }; if ( is_category()) { echo ‘ ‘; echo $category; };?> </title>
Won’t show the category ?
Forum: Plugins
In reply to: Place post id in page titleThnx Mrmist that worked!!
I now have:
<title><?php bloginfo(‘name’); if ( is_single()) { echo ‘ ‘;echo $post->ID; }; ?> </title>Is there a way to make i something like:
<title><?php bloginfo(‘name’); if ( is_single()) { echo ‘ ‘;echo $post->ID; }; if ( is_category()) { echo ‘ ‘; echo $category; ?> </title>Forum: Plugins
In reply to: Place post id in page titlemm i’m trying some thinks with the is_single() command and won’t work. How will be the code then?
Forum: Plugins
In reply to: Place post id in page titleFound it!
<title><?php wp_title(‘«’, true, ‘right’); ?> <?php echo $post->ID ?> <?php bloginfo(‘name’); ?></title>
The only problem i now have is that the number is always visible (also in the frontpage). The number you get there is from the last post.
When viewing a category the number in the title is also from that last post in that category.Is there a way to show this category only on the post it self. (i think single.php)
Maybe the code can be changed to something like:
<title><?php wp_title(‘«’, true, ‘right’); ?> <?php WHEN SINGLE PAGE THEN echo $post->ID ?> <?php bloginfo(‘name’); ?></title>
Forum: Plugins
In reply to: Place post id in page titleSorry this didn’t work.
Like i said. I need to change the <title> meta not some H1 or H2 header in my theme.Who can help me to get this done? Post ID in my meta title.
SO it will be something like:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” dir=”ltr” lang=”nl-NL”>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ /><title>SITENAME – POSTIDNUMBER</title>
Forum: Plugins
In reply to: Place post id in page titleSorry i thought i did work.
Doens’t by my version i have sorry.
I’ll try the version on the website maybe that will do the trick.
Need to go now. I’ll let you know soon.Forum: Plugins
In reply to: Place post id in page titleWHOOOOOOOWWW
It worked!!!!
I now can see there’s a diffrent version on that url than i now have.
I didn’t have the line 4 in single.php so i add it to it.I think i need to update my theme but all works well.!!!
Your the men!!!!!
And all other also thanks for the vry fast reply action.!!
Forum: Plugins
In reply to: Place post id in page titleChocoTheme is the theme i’m using
http://cssmayo.com/freebies/free-wordpress-themes/chocotheme/Forum: Plugins
In reply to: Place post id in page titleChocoTheme 0.03 door CSSMayo : http://cssmayo.com/
[Mod Note: Chunk of code removed. If you want to post large blocks of code, please use a pastebin.]
The example you have is <h2> i like to change the meta <title> page title.
Forum: Plugins
In reply to: Place post id in page titleI now have this in my header.php form my theme:
<title><?php wp_title(‘«’, true, ‘right’); ?> <?php bloginfo(‘name’); ?> <?php the_ID(); ?></title>
The id isn’t visible.
Forum: Plugins
In reply to: Place post id in page titleSorry my page is only localy installed not public sorry for that.
I’m testing with a page and all messages are catched with postie (pop3 email plugin).The messages don’t have a title.
I now add <?php the_ID(); ?> to my theme so people can see the postid.
I know it also can be done by the url like samboll wrote.What i like to have is (for better seo) that id shown in my page title.
Sorry for my bad english 🙂 and thanks for the fast reply’s on this forum!
Forum: Plugins
In reply to: Place post id in page titleAnd how do i get that in my page title ?