Forum Replies Created
-
AuthorPosts
-
JeffreyMember
Still trying to fix this nick. Do you (or anyone else) have any input?
JeffreyMemberAny thoughts on this nick?
JeffreyMemberNevermind, got it figured out.
JeffreyMemberFYI, i'm putting the shortcodes in the post meta field of the widget like this: [post_comments] [read-more] (but i've also tried [read more] and [read_more]. None work.
JeffreyMemberI notice the shortcodes you use in the widget configuration are formatted like this: [short_code]. I believe my short code is written to be like this [short code]. Does that make a difference?
JeffreyMemberHere's my full functions.php code. The shortcode section is at the very bottom - http://pastie.org/5485701. Nick, thanks SO much for your continued help.
JeffreyMemberOk, got the shortcode working only to, wait for it, not have the shortcode generate a "read more" link when I use it in the post meta section of the widget. Any ideas or help Nick -- or anyone else?
JeffreyMembergod i can't get this forum to paste the code right. how do u do that? *edit: Nevermind, figured it out and edited the above post with proper code formatting.
JeffreyMemberremoving that where the code reads as follows results in the exact same error message (same line and referencing the = sign):
<code>function read_more() {
global $post;
$return_string = '<a href="'.get_permalink($post->ID).'">'.get_the_title().'</a>';
return $return_string;
}
add_shortcode( 'read-more', 'read_more_function');</code>JeffreyMemberOooo, right you are Nick, apologies. here's is the pastie of the full functions.php file. The error is on line 146, citing an "unexpected '='". Thanks for your help! http://pastie.org/5481130
JeffreyMemberdo you need the code from the entire functions.php file so you can see the line in reference, or just a section? if the latter, here's the pastie. http://pastie.org/5479516
JeffreyMemberBTW, got the exact same error after moving that code after re-typing. I even just tried to retype it in TextEdit and then copy and paste into functions.php, but didn't work.
JeffreyMemberJust tried that, but to no avail. 🙁 so frustrating. any other advice? thanks so much for your help!
JeffreyMemberthanks nick. Just tried putting it at the bottom and got this error:
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /home/content/J/S/D/JSDavis82/html/wood/wp-content/themes/magazine/functions.php on line 144
JeffreyMemberanyone? i really need some help on this.
JeffreyMemberthanks for replying Nick, sorry for my delay. how could it be a problem with how it's added to functions.php? how should it be added?
JeffreyMembershit, the forum is effing with the code i'm posting, but the top code quote in that last one was the exact code you posted, so disregard the way it is converting the characters.
JeffreyMembercopied ur code exactly and pasted it like this Nick:
/** Add read more shortcode */
function read_more() {
global $post;
$return_string = 'ID).'">'.get_the_title().'';
return $return_string;
}
add_shortcode( 'read-more', 'read_more_function');
I get the following error:
Parse error: syntax error, unexpected '=' in /home/content/J/S/D/JSDavis82/html/wood/wp-content/themes/magazine/functions.php on line 97
JeffreyMemberI tried this code in functions.php but I'm getting a parse error. Any ideas?
function read_more() {
if (have_posts()) :
while (have_posts()) : the_post();
$return_string = '<a href='.get_permalink($post->ID).'>'.get_the_title().'</a>';
endwhile;
endif;
return $return_string;
}function register_shortcodes() {
add_shortcode( 'read-more', 'read_more_function');
}JeffreyMemberI'm really trying hard to wrap this up. Just don't have much experience writing in short codes or hooks. Would something like this work - http://www.billerickson.net/code/add-read-more-to-display-posts-shortcode/ ? If so, can you post any modifications you see that I would need to make to that coded to be able to use a [read_more] short code in the widget post meta section?
-
AuthorPosts