Archived topic
Blog roll under podcast information
3 replies · Started by Jake on April 22, 2020
Hello!
I'm trying to achieve something similar to what Tim Ferris has on his podcast page: https://tim.blog/podcast/ where he has a blog roll for all his podcast episodes at the bottom.
Here's my page: https://sendmetosleep.com/podcast/
What's the best way for me to achieve this? (I haven't got any posts yet, however).
Also, the search bar on the page looks strange on mobile, it turns into two rows. How can I fix it to be on one row?
Thanks in advanced.
Hi there,
You would need a plugin like WP Show Posts:
https://en-ca.wordpress.org/plugins/wp-show-posts/
The pro version is needed to use the infinite scroll option though:
https://docs.wpshowposts.com/article/posts-overview/#pagination
Thanks for that Leo – I'll use the plugin.
Any idea on how to fix the search bar on the above page on mobile?
Hi there,
problem with inlining the search and button - it gets very cramped on small devices. How about try this CSS:
@media (max-width: 420px) {
.wp-block-search .wp-block-search__input {
max-width: unset;
}
.wp-block-search .wp-block-search__button {
flex: 1;
margin-left: 0;
margin-top: 10px;
}
}
It will stack the input and submit and make them both full width