dypark
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What do I with permalinks if I move my blog URL?Thanks. It worked.
Forum: Fixing WordPress
In reply to: What do I with permalinks if I move my blog URL?Should I move my blog before moving the WordPress files?
Thanks.
Forum: Fixing WordPress
In reply to: Parse error in custom_functions.php fileYes, I tried to add code for Google Reader, got the error, then deleted the Google Reader code.
Fortunately, I have a recent backup.
Here is the code. Thanks.
<?php
// Using hooks is absolutely the smartest, most bulletproof way to implement things like plugins,
// custom design elements, and ads. You can add your hook calls below, and they should take the
// following form:
// add_action(‘thesis_hook_name’, ‘function_name’);
// The function you name above will run at the location of the specified hook. The example
// hook below demonstrates how you can insert Thesis’ default recent posts widget above
// the content in Sidebar 1:
// add_action(‘thesis_hook_before_sidebar_1’, ‘thesis_widget_recent_posts’);// Delete this line, including the dashes to the left, and add your hooks in its place.
/**
* function custom_bookmark_links() – outputs an HTML list of bookmarking links
* NOTE: This only works when called from inside the WordPress loop!
* SECOND NOTE: This is really just a sample function to show you how to use custom functions!
*
* @since 1.0
* @global object $post
*/function custom_bookmark_links() {
global $post;
?>
<ul class=”bookmark_links”>- &title=<?php urlencode(the_title()); ?>” onclick=”window.open(‘https://delicious.com/save?v=5&noui&jump=close&url=<?php urlencode(the_permalink()); ?>&title=<?php urlencode(the_title()); ?>’, ‘delicious’, ‘toolbar=no,width=550,height=550’); return false;” title=”Bookmark this post on del.icio.us”>Bookmark this article on Delicious
<?php
}I used method number 4, and it worked. I can log back into my blog and it looks fine.
Thank you so much.