codi
Forum Replies Created
-
Forum: Plugins
In reply to: export post snipet to static php pageTried that….didn’t work either <:(
Forum: Plugins
In reply to: export post snipet to static php pageI set up a php page just as described:-
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, false);
require(‘/home/webnews/public_html/blog/wp-content/themes/news-magazine-theme-640/header.php’);
?><?php
$posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title’);
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo “
“; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>and I get this error message:-
Fatal error: Call to undefined function language_attributes() in /home/webnews/public_html/blog/wp-content/themes/news-magazine-theme-640/header.php on line 2
so far, I have not been able to figure out the problem. Any help would be greatly appreciated.
Codi
Forum: Fixing WordPress
In reply to: Current time displayedRVoodo….you are the MAN or the LADY as the case may be…that did the trick…Thank you very much. Your having taken the time to assist is greatly appreciated.
I am slowly putting together this site http://webnewsfeed.com and http://webnewsfeed.com/blog
All input is greatly accepted.
Also thanks to vtxyzzy for your effort.
Thanks again
Codi
Forum: Fixing WordPress
In reply to: Current time displayedThis is what I have now:
<?php print(date (‘g:i A T’)); ?>
and this is what it shows ast 12:34 PM EST
4:34 PM UTC
When I used your snippit it showed
5:28 PM UTC
Forum: Fixing WordPress
In reply to: Static post on home index pageThanks Tim…DIH..! Apparently looked everywhere else…thanks again.
Codi
Forum: Fixing WordPress
In reply to: Add Hyperlink to Authors name on postStvwlf,
Thanks loads for the link…works just great
Thanks again for your response…I don’t know much but if I can ever help you, let me know
Forum: Fixing WordPress
In reply to: Featured Video WidgetForget it…I got worn out trying to get it to work so I trashed it.
Forum: Plugins
In reply to: How to remove Meta login tagsThank…it works great…sorry it took so long to get back to you. Thanks again..
Codi
Forum: Plugins
In reply to: user_description()Thanks MichelH…but the assistance you gave me didn’t help because I’m not a programmer and I don’t understand how to do what it says. I was hoping someone would step up to the plate and take up the challenge. I may be blind in one eye and unable to see out of the other, but I thought it would be a neat addition to WordPress. A hyperlink from the blog author’s name to a page built on the fly showing the information in the user_description section of his registeration.
Forum: Fixing WordPress
In reply to: Link author’s name to php page with the_author_description ()Not what I am looking for. I don’t want to have to create static pages for each author…I want them created on the fly from a hyperlink on the author’s name that is pulled each time a blog is brought up on the browser. When the link on the author’s name on the blog is clicked on, it should call the fly page and provide that author’s id # to the fly page where you would have the php code to pull that info from the database. That’s what I need and I know it can be done, but unfortunately, I’m not the one to do it.