How to customize a theme? [closed]

First of all, don’t ask opinion based questions on StackOverflow. Secondly, try Googling for an answer You can try the WordPress Theme Customizer, check out the docs: WP Codex Here is what it looks like Basically you need to register Sections (stores a set of options). Then you need to register Settings (to store the … Read more

How to add a custom font in a theme

To use a custom font, simply upload the font to your theme folder and then add a CSS @font-face declaration to the top of your theme’s style.css file pointing to the new font: @font-face { font-family: CustomFont; src: url(‘CustomFont.ttf’); } You can then reference that custom font in other CSS styles, for example: .entry-content { … Read more