pingoochan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help With ExcerptOw, and put that file into your plugin folder 😉
Forum: Fixing WordPress
In reply to: Help With ExcerptTry to save that piece of code into a php file and name it newExcerptLength.php
<?php /* Plugin Name: New Excerpt Lenght Description: This plugin change the excerpt length to 55 characters Version: 0.1 Author: Some Guy from Mars */ function new_excerpt_length($length) { return 55; } add_filter('excerpt_length', 'new_excerpt_length'); ?>Forum: Fixing WordPress
In reply to: looking to pay a professonal to fix my siteIt seems that the header of your site won’t load anymore. Do you have copy and paste something into the file called header.php?
Can you provide a link to the widget you want to use?
Forum: Fixing WordPress
In reply to: Can crunchbase.com be done with wordpress ?Since WordPress work with plugins, I’d say yes, it’s quite possible.
You must know how to code into PHP and manipulate MySql.Forum: Fixing WordPress
In reply to: Help With ExcerptHi d4jaj1,
In order to set the length of any excerpts on your pages, you need to add some lines into the file “functions.php” located into your plugin folder:
function new_excerpt_length($length) {
return 55;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);Bye bye and happy blogging
It’s too much work, because i’ll have something like a thousand overview’s pages with a lot of related news, pictures and whatever.
Can we have a dropdown list in the post section in order to select an overview page?
Forum: Fixing WordPress
In reply to: Can’t pass variable using url Get method with permalink!Do you guys have any clues? I can’t work on my website anymore…
Thank you very much!
Forum: Fixing WordPress
In reply to: How can I list subpages that below to 1 main page?Indeed, child_of helped a lot!
Thanks to both of you! Problem solve!