Dan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom fields for pages.Below your post, in your WP visual editor, you have a custom fields form where you can specify metadata associated to that post. Then, at your template files, you can call that metadata using get_post_meta().
<?php echo get_post_meta( get_the_ID(), 'original_author', true); ?>This will display the original_author metadata specified on your post custom fields.
Forum: Themes and Templates
In reply to: Created a theme and can't get it to work now.Please verify that you have a style.css file in your theme folder:
wp-content/themes/eliteearnerstheme/style.css
If the file does not exist, WordPress wont be able to load the theme information, hence, it wont be activated. The file must exists within your theme folder and it must contain the theme information as stated here:
http://codex.wordpress.org/Theme_Development#Theme_Stylesheet
Forum: Themes and Templates
In reply to: feedburner email subscribe not enabled? URGENTI see it is working just fine. It opens a popup window when I submit the form.
Email Subscription Request
Thank you for your request.
peter@test.com
…will receive a verification message once you submit this form. FeedBurner activates your subscription to “Future Pocket” once you respond to this verification message.Forum: Themes and Templates
In reply to: Alternative to get_bloginfo( ) for posts and pagesTo call the images from your template folder you should use bloginfo(‘template_directory’), like this:
<img src="<?php echo bloginfo('template_directory'); ?>/images/pic.jpg" alt="">This way, no matter where your template is hosted, it will always look for the images inside your theme folder.
Forum: Themes and Templates
In reply to: How can I embed a .htm file into a post?I’d go for Scribd as mrwweb said. Otherwise just copy paste the HTML code of your .htm file into your HTML view of you post. If it is too long, better use a different solution like Scribd for better paging and representation.
Pain in the nuts. To fix it, open the nivoslider4wp-show.php file on your favorite text editor and completely remove the jquery call line, which looks something like this:
<script type=”text/javascript” src=”https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js”></script>
Save the file and reupload it via FTP. You can also edit this file from the plugin editor on WordPress. (Plugins -> Nivo -> edit).
Forum: Plugins
In reply to: Email Confirmation Plugin?Yeah, check this out:
http://www.skippy.net/blog/2004/04/27/plugin-comment-authorization/
It has been tested on 2.0.4 and work like a charm. So it should work too on 2.0.5. Hope this helps!