About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Hi Sridhar.
It (remove_action and add_action) didn´t work in my Minimum Theme (Genesis).
I have just tested the code in current latest Minimum Pro v3.0 and it is working fine.
Which version of Minimum are you using?
ok. Thanks for your answer. I´m using v 2.0.1
Thanks
thanks was very helpful
is there a way to get the date on the same level as title
example: october 29, 2013 // THIS IS TITLE
In addition to the suggested code in the article above, add
//* Customize the post info function
add_filter( ‘genesis_post_info’, ‘sp_post_info_filter’ );
function sp_post_info_filter($post_info) {
if ( !is_page() ) {
$post_info = ‘[post_date] //’;
return $post_info;
}}
and in style.css, instead of adding
.entry-header .entry-meta {
margin-bottom: 1.2rem;
}
add
.entry-header .entry-meta {
margin-bottom: 0;
float: left;
margin-right: 1rem;
margin-top: 0.8rem
}
i want to know how i put the post-meta above the title
You may want to see http://www.sridharkatakam.com/moving-post-categories-entry-meta-post-title-genesis/
This also does not work for me. I am using Dynamik on Genesis.
I’ve just tested the code in Dynamik and it’s working fine. Paste the code in Genesis > Dynamik Custom > Functions.
http://i.imgur.com/KXNxGw3.png
http://i.imgur.com/CcatddW.png
Must have been a cache issue – works perfectly now, thank you!!
Is there a way to do this in a post instead of on the homepage?
How can I move the Post info below the Post Title? (In executive theme it is reverse of default).
something like this?
emove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 9);
add_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );
You can just comment out or delete the following from Executive Pro’s functions.php:
remove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );
add_action( ‘genesis_entry_header’, ‘genesis_post_info’, 5 );
I’m glad I found your post.
I’ve been noticing the numbers in PHP code and recently learned they have to do with the order things are displayed. But I still don’t understand.
Would I change the numbers to get the entry meta to display below the posts? Thank you!
I found an article on the new hooks and changed the entry meta to genesis_after_entry_content. It worked.
Is there an article you can recommend, though, to help me learn more about those numbers?
Is it possible to have this work in the sidebar as well? This works for me on the actual post, but not in the sidebar. I am using the Genesis Featured Posts widget.
Update: I resolved this after following Brad Dalton’s excellent post:
http://wpsites.net/best-plugins/custom-genesis-featured-posts-widget-you-can-modify-safely/
How do you do this in Genesis Blissful theme?
Hopefully you can tell me how I would do title, excerpt, post info! That would be much appreciated!