PHP Archives - 7-Views

How to use a sub folder in default controller route in CodeIgniter 3

Posted by
January 22, 2019

While setting $route[‘default_controller’] without subdirectory it is working but I wanted to change it inside subdirectory and it’s not working. Here is the solution to the issue. Please create a file in the insideapplication/core directory. the file name would be MY_Router.php paste the following content inside the file “MY_Router.php”, it will work like a charm.   […]

read more

Widgetizing theme in wordpress

Posted by
December 24, 2018

Widgetizing is creating widget area in your theme. For this you need to add below code inside your functions.php file function mytheme_widgets_init() { register_sidebar( array( ‘name’ => ‘Sidebar Right’, ‘id’ => ‘sidebar_right’, ‘before_widget’ => ‘<div>’, ‘after_widget’ => ‘</div>’, ‘before_title’ => ‘<h2>’, ‘after_title’ => ‘</h2>’, ) ); } add_action( ‘widgets_init’, ‘mytheme_widgets_init’ ); Once added look into […]

read more

Create Shortcode for [NEXT] and [PREVIOUS] to be placed into specific posts for post navigation

Posted by
December 24, 2018

Add this code to your theme functions.php file add_shortcode( ‘prev’, ‘prev_shortcode’ ); add_shortcode( ‘next’, ‘next_shortcode’ ); function next_shortcode($atts) { global $post; ob_start(); next_post_link( ‘<div class=”nav-next”>%link</div>’, ‘Next post link’ ); $result = ob_get_contents(); ob_end_clean(); return $result; } function prev_shortcode($atts) { global $post; ob_start(); previous_post_link( ‘<div class=”nav-previous”>%link</div>’, ‘Previous post link’ ); $result = ob_get_contents(); ob_end_clean(); return $result; […]

read more