formattingissue
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Extending excerpt wordcount to remove the bracketsThank you very much for your suggestion. It’s a very pertinent observation and I thank you for taking the time to look. I’ll go at it again 🙂
Forum: Fixing WordPress
In reply to: Extending excerpt wordcount to remove the bracketsUPDATE: I worked it out.
Should others find this helpful here’s where it is:In your dashboard go to: Appearance
On the right you’ll see options for Theme Functions
Click on that.
[then press CTRL F to bring up a find box on the top right of the screen)
in this box, search for ‘excerpt’
Locate the part that says: function [your site]_length( $length) {
return 15
}Change the number AFTER return to the wordcount you want.
Go to the bottom and click UPDATE FILE
Forum: Fixing WordPress
In reply to: Extending excerpt wordcount to remove the bracketsOK. SO i have located (i think!) where i need to do this. But what do I do.
add_action( ‘genesis_before_header’, ‘add_offcomm_twitter_button’, 1 );
remove_action( ‘genesis_before_post_content’, ‘genesis_post_info’ );
remove_action( ‘genesis_after_post_content’, ‘genesis_post_meta’ );function offcomm_excerpt_length( $length ) {
return 15;
}
add_filter( ‘excerpt_length’, ‘offcomm_excerpt_length’, 999 );/*
function offcomm_article_url( $permalink, $post_id ) {if ( $url = get_post_meta( $post_id, ‘issuu_url’, true ) )
return $url;
elseForum: Fixing WordPress
In reply to: Extending excerpt wordcount to remove the bracketsThank you Media X…. not sure where to start t there. But having looked at Alchymyth that looks like the kind of thing. Just don’t know where to find the function php thingy…
Can anyone tell me (in a very basic way :0) how to get to the bit that i need to change?
I’d be most grateful….
Thank you