Elementor\TemplateLibrary\Source_Local::post_row_actions PHP Method

post_row_actions() public method

public post_row_actions ( $actions, WP_Post $post )
$post WP_Post
    public function post_row_actions($actions, \WP_Post $post)
    {
        if ($this->_is_base_templates_screen()) {
            $actions['export-template'] = sprintf('<a href="%s">%s</a>', $this->_get_export_link($post->ID), __('Export Template', 'elementor'));
            unset($actions['inline hide-if-no-js']);
        }
        return $actions;
    }