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 can i display in themplate file only a few post

Ok. You are toggling your display according to a $_GET parameter that you have added to the URL– this switch in your archive.php $view = ‘poster’; $mode = stripslashes( $_GET[“afisare”] ); $modes = array(‘complex’, ‘simple’, ‘poster’); if(in_array($mode, $modes)) $view = $mode; get_template_part(‘persoane’, $view); You can alter how many posts will display but that is much … Read more