Here’s how to disable the post title in Genesis WordPress themes. Add code in themes.php.
add_filter( 'genesis_link_post_title', '__return_false' ); |
cloud engineer
by Ulysses ·
Here’s how to disable the post title in Genesis WordPress themes. Add code in themes.php.
add_filter( 'genesis_link_post_title', '__return_false' ); |
add_filter( 'genesis_link_post_title', '__return_false' );
by Ulysses ·
I’m now using the Revolution theme from StudioPress. It’s a minimal design with lots of whitespace. The default font is Playfair Display which highlights headlines and blockquotes. The Playfair Display is available from Google Fonts if you’re interested. I think it’s a perfect theme for a photography blog. Although the theme seems to invite you to write more, something I haven’t been doing lately. And before I sign off, let’s take a look at what a blockquote looks like. Not bad at all. A beautiful theme.
It’s a minimal design with lots of whitespace.
By Studiopress
by Ulysses ·
If WordPress is asking for FTP details when you’re trying to update a theme, plugin, or WordPress itself, you will need to edit your wp-config.php file to add the following line to your configuration.
define('FS_METHOD','direct'); |
define('FS_METHOD','direct');
Save the file and try updating again. It shouldn’t ask you for FTP details.