taniarascia / comments

Comments
7 stars 0 forks source link

wordpress-from-scratch-part-two/ #51

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

WordPress Tutorial: Pagination, Comments, Functions, & Custom Posts | Tania Rascia

In part one of the tutorial series Developing a WordPress Theme From Scratch, we learned what WordPress is, what it can do, and how to do…

https://www.taniarascia.com/wordpress-from-scratch-part-two/

manellen3 commented 3 years ago

Good article!

kostniczka commented 3 years ago

You are the best! Great content in today's Internet full of trash. Thank you for your work! It helps me a lot. :)

david-r-giron commented 3 years ago

After the step in which we replace the_content() with the_excerpt() in content.php, the whole articles never get displayed, and somehow this also affects page display, and I cannot get into the whole article past the excerpt.

david-r-giron commented 3 years ago

Nevermind. I simply had to go into page.php and change get_template_part( 'content-single', get_post_format() ); to get_template_part( 'content-single', get_post_format() );

david-r-giron commented 3 years ago

[Oh my god, there should be a way of editing or deleting comments... I'm making revision to the comments I leave on your website after finding mistakes!]

get_template_part( 'content', get_post_format() ); to get_template_part( 'content-single', get_post_format() );

This should have been mentioned as an update after we change content.php and add single.php with the aforementioned reference change from 'content' to 'content-single'.

david-r-giron commented 3 years ago

Pager class from blog.css stops working after pulling css files from function.php

Not sure what this is about, but the whole rounded button customization of the 'next' and 'previous' buttons was lost after that. Should I be linking to some other default Wordpress css files?

david-r-giron commented 3 years ago

Well, no, the class does not stop working, rather the pager list items do not display as rounded-corner buttons any longer.