AlkantarClanX12
Current Path : /home/thanudqk/thepball.com/wp-content/themes/astra-child/ |
Current File : /home/thanudqk/thepball.com/wp-content/themes/astra-child/functions.php |
<?php /** * Astra Child Theme functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Astra Child * @since 1.0.0 */ /** * Define Constants */ define( 'CHILD_THEME_ASTRA_CHILD_VERSION', '1.0.0' ); /** * Enqueue styles */ function child_enqueue_styles() { wp_enqueue_style( 'astra-child-theme-css', get_stylesheet_directory_uri() . '/style.css', array('astra-theme-css'), CHILD_THEME_ASTRA_CHILD_VERSION, 'all' ); } add_action( 'wp_enqueue_scripts', 'child_enqueue_styles', 15 ); function astra_post_read_more() { return __( '', '.' ); } add_filter( 'astra_post_read_more', 'astra_post_read_more' );