Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php
  2. /*================================================
  3. #Load the Parent theme style.css file
  4. ================================================*/
  5. function marius_enqueue_styles() {
  6. wp_enqueue_style( 'divi-parent', get_template_directory_uri() . '/style.css' );
  7. }
  8. add_action( 'wp_enqueue_scripts', 'marius_enqueue_styles' );
  9.  
  10. /*================================================
  11. #Load the translations from the child theme folder
  12. ================================================*/
  13. function marius_translation() {
  14. load_child_theme_textdomain( 'Divi', get_stylesheet_directory() . '/lang/theme/' );
  15. load_child_theme_textdomain( 'et_builder', get_stylesheet_directory() . '/lang/builder/' );
  16. }
  17. add_action( 'after_setup_theme', 'marius_translation' );
  18.  
  19.  
  20. function custom_post_name () {
  21. return array(
  22. 'feeds' => true,
  23. 'slug' => 'product',
  24. 'with_front' => false,
  25. );
  26. }
  27. add_filter( 'et_project_posttype_rewrite_args', 'custom_post_name' );
  28.  
  29. function portfolio_size_h($height) {
  30. return '9999';
  31. }
  32. function portfolio_size_w($width) {
  33. return '9999';
  34. }
  35. add_filter( 'et_pb_portfolio_image_height', 'portfolio_size_h' );
  36. add_filter( 'et_pb_portfolio_image_width', 'portfolio_size_w' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement