Displaying the full text instead of post title

Try to see inside your index.php file. If it have <?php the_content(); ?> inside the loop. Also watch inside your post in admin and don’t put any <!–more–> tags inside your content. This method show all the content on the main page.

Default plugin config to override wp_options?

You could check which options they add (look at the source code) and then simply write a function like this: /* Plugin Name: Mother of all plugins Plugin URI: http://wordpress.org/extend/plugins/ Description: Offers the <code>$all_plugin_options;</code> var to access all predefined plugin options Author: Franz Josef Kaiser Author URI: http://say-hello-code.com Version: 0.1 License: GPL v2 – http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … Read more

Defining hooks within (php)classes?

Hook can only be identified by string. So the only option to have dynamic hook is is use some variable(s) in its name: do_action( $some_string_variable . ‘_top_page_hook’ ); Depending on what you are trying to do this can be something meaningful (like prefix, defined by configuration) or something randomly generated to be unique ID (not … Read more

Getting values from options page to css

You are doing it correctly. I would suggest two enhancements: Do not put this code directly in header.php. Create a custom function to print the css and hook this into the wp_head action. Always sanitize/escape input before you print it to the screen. Look into ctype_xdigit() for creating a custom function to sanitize you color … Read more

How can I increase the font sizes used by the WordPress visual and HTML post editors?

Put this on the top of your functions.php file after the first <?php add_action( ‘admin_print_styles-post.php’, ‘my_admin_css’ ); add_action( ‘admin_print_styles-post-new.php’, ‘my_admin_css’ ); function my_admin_css() { ?> <style type=”text/css”> #editorcontainer textarea#content { font-size:130%!important } </style> <?php } The function will print out the additional CSS on the pages where you write posts only (so it’s not loading … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)