remma93
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] latest news/post layout – Zerif LiteHi shaufyq,
We are actually website designers, however, this is my first time using wordpress and I have had to try and figure out everything for my self to see how well I can do.
You can email me at [Moderated] if you wish to know more.
Thanks.
Forum: Themes and Templates
In reply to: [Zerif Lite] latest news/post layout – Zerif LiteHi Coemgem90,
Add the following function into the function.php file.
The you change the return number. So if you didn’t want to show any of the post at all, you can just put 0 to show the picture and the title.Hope this works for you.
add_action( ‘wp_enqueue_scripts’, ‘one_pirate_custom_script_fix’ );
function custom_excerpt_length( $length ) {
return 10;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );Forum: Themes and Templates
In reply to: [Zerif Lite] latest news/post layout – Zerif LiteThe only other problem i have, which maybe you could help with is that we need to change the order of the section around.
SO currently we have the about us section and then the latest news section underneath.
Is there any way of swapping those two around?
Thanks.
Forum: Themes and Templates
In reply to: [Zerif Lite] latest news/post layout – Zerif LiteI have figured my problem out now, I had to add a function into the function.php file to say how many lines of texts/words i want to show.
our blog site is blog.chesterfieldit.com, if you still wish to take a look.With regards to your pictures not working shaufyq, did you add the picture in the correct place?
When editing your post, if you scroll right down to the bottom, there is featured image box, this is where you add your image to show on the latest news section.